November 2024 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Tag Archives: flash
The String’s replace method and ArgumentError: Error #1063: Argument count mismatch error
Hi, recently I have upgraded flash player (11.1.102.55), and suddenly found that one of my components was throwing following error: ArgumentError: Error #1063: Argument count mismatch on Main/removeLinkStyleClass(). Expected 0, got 6. at String$/_replace() at String/http://adobe.com/AS3/2006/builtin::replace() at Main/init()[…\bugs\string_replace\src\Main.as:27] at Main()[…\bugs\string_replace\src\Main.as:16] … Continue reading
Posted in actionscript, bugs, flash
Tagged actionscript3, Argument count mismatch, ArgumentError, bugs, Error #1063, flash
1 Comment
SQLite – compare null values
Hi, this is a quick post describing issue I have found when using SQLite in flash. I’ve tried to fetch some rows using following snippet, but couldn’t get correct results. Then after digging on the net I have found that … Continue reading
Posted in actionscript, air for android, flash, SQLite3 (in AIR)
Tagged actionscript, actionscript3, air, air for android, flash, IS NULL, SQLConection, SQLError, SQLite, SQLStatement, SQLStatement parameters
4 Comments
StyleSheet’s method getStyle doesn’t return null for non-existing style
I have just learned that getStyle() method of flash.text.StyleSheet class doesn’t return null value when requested style doesn’t exists. Documentation states that it should, but in fact it returns empty object. Which could be fine for tests but you could … Continue reading
Posted in actionscript, bugs, flash
Tagged actionscript3, ASl-198, BUG, flash, FP-113, getStyle, styleNames, StyleSheet
Comments Off on StyleSheet’s method getStyle doesn’t return null for non-existing style
SQLite: Calculate difference between datetime fields
If you want to easily get elapsed time between datetime fields in SQLite you may want to take a look at following snippet: Table some_table contains 2 columns named start and finish both datetime type. Result will contain value in … Continue reading
Posted in actionscript, flash, SQLite3 (in AIR)
Tagged actionscript3, cast(), flash, select, SQLite, strftime
1 Comment