Can anybody help? Is it possible to introduce a fade into this script so that on rollover the new random color fades in rather than instantly switches.
on (rollOver) {
// “square” is the object being tinted
myColor = Math.round( Math.random()*0xFFFFFF );
myColoredObject = new Color (_root.square);
myColoredObject.setRGB(myColor);
}
Have attached the .fla
I found a tutorial that does this on Kirupa (http://www.kirupa.com/developer/flash5/randomcolor.htm) but for some reason it only works on Flash Player 6 or less. I built my menu so far - but it won´t work on Flash Player 8 so need to find another way to do it (My menu so far - in progress: http://www.willtaylar.co.uk/test/main.htm)
Thank you very much for any help.
Best - Will.