Flash: Random Fill

A short article on setting the fill of movieclips to random colors like this:   Here is the code: newColor = Math.floor(Math.random()*0xffffff); mcToColor = new Color (_root.mymc); mcToColor.setRGB(newColor); The first line creates a variable (newColor) equal to a random number. … Continue reading