Category Archives: AS3

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 ActionScript, AS3, Flash, Tutorial | Comments Off

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 ActionScript, AS3, Flash | Comments Off