Friday, April 17, 2009

Changing the Color of A Movieclip (Again)

If you create an movieclip in Flash, add it to the stage and call it shape. Then you add a button and provide these actions for the button:
on (rollOver) {
var colorful = new Color("_root.shapes");
colorful.setRGB(0x003366);
}

the color is changed. Cool!

0 comments: