AS3 Android Flash Components
Android Flash Component Set for develop Android apps.
Set comes with source and .fla for modify with our requeriments.
Autor website:Kevin Hoyt
Download components:android-components






Archive for the ‘ Flash ’ Category
Android Flash Component Set for develop Android apps.
Set comes with source and .fla for modify with our requeriments.
Autor website:Kevin Hoyt
Download components:android-components






Imagine we can use switch staments with conditional operators other then strict equality.
This way we can do a code like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | var value:int = 2; switch(value){ case < 1: trace("Value is less than 1"); break; case 2: trace("Value definitely equals 2"); break; case >= 3: trace("Value is greater than or equal to 3"); break; case > 1 && < 3: trace("Value is greater than 3 and less than 5"); break; case !== 5: trace("Value definitely doesn't equal 5"); break; } |
Navigating the web I have find one solution:
1 2 3 4 5 6 7 8 9 10 11 12 | var value:int = 2; switch (true) { case value < 1: trace("Value is less than 1"); break; case value == 1: trace("Value equals 1"); break; case value > 1: trace("Value is greater than 1"); break; } |
Zaalabs yesterday announced the release of an opensource library, written using Alchemy, which will allow swf to load at runtime more than 40 different image formats ( you will have access to the bitmapdata of the loaded file ).
More Info:Zaalabs
Download:ZaaIL
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Jan | ||||||
| 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 | ||||