Why haXe to SWC is important for Flex/Flash Developers?

I believe that haXe is the right platform for developing api’s and code libraries. Why haXe? If you use just the haXe core libraries. HaXe Can compile to Javascript by generating a single.js file Can compile to Flash 6-8 by generating a single .swf file Can...

Powerflasher FDT 3.O Review

FDT is an Eclipse based IDE for Actionscript coding. I heard about it a lot but never tried it on my own. When I came to know Nico Zimmerman is about to present in our FUG. I wanted to try it before that so that I can better understand the platform and raise any...

Flash Studio PRO 1.5 released

Flash Studio is a third party program for creating screen savers and applications out of projector files. The new pro version has some major additions. The updates are massive and unique including enabling joystick control, running applications in hidden windows, and...

Unable to *continue* with Auto Format!

Beware that auto formatting eats your actionscript some times !!! See the following code for (var i = 0; i<5; i++) { if (i == 2) { continue; } trace(i); //traces 0, 1, 3, 4 (skips 2) } If you apply Auto Format to the code it becomes for (var i = 0; i<5; i++) {...