ActionScript
Forums
PHP
Meta
Category Archives: AS3
Creating a SWC with FlashDevelop
In order to create a SWC using FlashDevelop you can use the ExportSWC plugin. This makes the process really simple. I was wondering how I could create a SWC like the one available in the AS3 Core Lib for example. … Continue reading
Posted in AS3, ActionScript, Flash, FlashDevelop, Tutorial
Leave a comment
Animated MovieClip on MOUSE_OVER, MOUSE_OUT
If you want to have better looking animations in buttons, you don’t use a Button, you use a MovieClip. This means that you’ll have to use some code to control the MovieClip. Play it forwards … Continue reading
Posted in AS3, ActionScript, Flash, Tutorial
Leave a comment
Apply and Remove tint to an Object in AS3
If you want to tint an object and then revert to its original color, you can use setTint() passing 0 in the second parameter, e.g.: PLAIN TEXT Actionscript: c.setTint (0xFF0000, 0);
Posted in AS3, ActionScript, Flash
Leave a comment