Just created my first Github Public repo and did an initial commit. Take a look here: https://github.com/EdwinToh/LightPainter LightPainter is an app that allows you to create your own light painting effects with your web cam. It’s an initial commit so documentation and comments are scarce and unorganized. Have fun painting!
as3
Opening a ColorBox in Flash
The update to my previous method to “Opening a Thickbox in iFrame” is finally here.
short – bringing back sweet old AS2 syntax to AS3
A new AS3 framework has been released by Arul @ Luracast. Do check it out at http://code.google.com/p/short/. I’m pretty excited about it because of 2 things. Firstly, it’s the first framework released by someone based in Singapore. Secondly, I share the same frustration as the creator – a simple getURL that used to be so [...]
Flash, Arduino, Influxis and SmartFox
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.
Master Volume Control in AS3.0
Source code after the jump.
Garbage Collector in AS3
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…
stop all sounds in Flash AS3
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.
AS3 Fur/Hair Generator
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/
AS3: remove All Children in a DisplayObject
Overlapping Movieclips in AS3
Back in AS2, when a MovieClip(MC) is underneath another one, as long as the MC that is on top doesn’t have any button actions (eg. onRollOver, onRelease etc), assigning button actions to the MC below will work. Not anymore in AS3. A quick fix is to give the following properties to the MC on top [...]