Posted by Shiggs | Posted in AIR, Actionscript 3.0, Flash, Flex | Posted on 21-04-2010
I just ran across this on Senocular's blog. It's a comprehensive Actionscript 3.0 reference, I'm surprised I never ran across this before, the beauty of it is that it allows to browse by platform and provides other filtering options as well. If you are a FP (Flash Platform) developer, check it out --> AS3 Ref. Also, check this out too, for your documentation needs --> DOC?
I like seeing that many JS libraries are being hosted online. Saves me a few minutes, but mostly it's just nice to have. SWFObject is now hosted on google here http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js, check it out here. If that's not enough for you here is a generator in AIR to produce embed code for you.
Posted by Shiggs | Posted in AIR, Actionscript 3.0 | Posted on 29-10-2009
HERE
He also provides code for an Air app that will receive a dropped SWF and encrypt it.
Posted by Shiggs | Posted in AIR, Actionscript 3.0, Flash, Flex | Posted on 09-04-2009
I just came across this and I love it. When it comes to coding I'm a sucker for "survivalist" code practices. That is, self contained projects. This debugger works like many others but has the option to export the needed class from the menu. This is great as all you need is the application and all of the classes and examples are self-contained. The thing I love most about this debugger is it's simplcity. Basically here is what you need in your code:
import nl.demonsters.debugger.MonsterDebugger;
private var debugger:MonsterDebugger;
debugger = new MonsterDebugger(this);
MonsterDebugger.trace(this, "Hello World!");
Instead of "Hello World!" you can put objects or anything else as the second argument and have it trace out. Pretty sweet.
CHECK IT OUT
Posted by Shiggs | Posted in AIR | Posted on 29-01-2009
I know... enormous potential. CHECK IT OUT.