must or bust
must or bust
Out of context: Reply #10
- Started
- Last post
- 10 Responses
- tparsons0
Here is what we use on our random colored tagline.
This AS would be placed within the MC that you want to fade in and out as different colors.
Simple as that.
tellTarget ("_root.yourinstacename") {
c = new Color(this);
r = (Math.random()*256);
g = (Math.random()*256);
b = (Math.random()*256);
c.setRGB(r << 16 | g << 8 | b);
}