by admin | Jan 12, 2009 | Blog
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...
by admin | Jul 20, 2008 | Blog
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...
by admin | Oct 4, 2002 | Blog, Flash MX, News
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...
by admin | Oct 3, 2002 | Blog, Multimedia, News
If you are interested in developing e-learning content you may find this link useful. MIT is Open Sourcing some of its courses and course content.
by admin | Sep 28, 2002 | Blog, Bug, Flash MX
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++) {...