Question
Button Color
I need to chnage all the button colours using actionscript. So I tried the follwoing. Created a movieclip inside the button called "insideBtn_mc". Then I useed the follwoing code. But that was not successful.
var colorful = new Color ("insideBtn_mc");
colorful.setRGB(0xc1c1c1);
Basically I need a way to change the button colors using actionscript.
