If you’ve been developing microsites in Flash, chances are, you’ve probably met the same problems that I did. I’ve listed down some of the classes that have really helped me in my work with a short description, and some pros and cons.
Learn how to use the great SWX Twitter API written by Aral Balkan. (with source code)
A case study of a microsite for Battlefield Bad Company 2.
Learn how I used Arduino, Flash, Smart Fox Server, and Influxis (Flash Media Server) to create the site.
Being new to AS3, I didn’t realise that removing a child from the display list does not kill all it’s listeners, sounds, and some other stuff I don’t know…
You can call it the global mute as well. What this line of code does is actually just turning down the entire flash’s volume down to 0. This is great for websites or games alike when a “Sound Off” or “Mute” feature is needed. SoundMixer.soundTransform = new SoundTransform(0);
Stumbled upon this great flasher’s blog recently while trying to research for something I want to do: http://en.nicoptere.net/?p=574 The speed and quality of the fur generator is, I believe, the best out there right now. Awesome stuff. Other generators: http://blog.inspirit.ru/?p=131 http://projects.stroep.nl/fur/
function removeChildrenOf(mc:MovieClip):void{ if(mc_mc.numChildren!=0){ var k:int = mc.numChildren; while( k — ) { mc.removeChildAt( k ); } } }
If, for some reason, you’re still on Flash CS4 10.0, upgrade to 10.0.2 NOW. My Flash has slowed down dramatically since my FLA got huge. Clicking on elements on the stage was agony as it takes a few seconds for Flash to react. Little did I realise that Adobe released a fix for it, and [...]
Recent Comments