How can I dynamically change the color of fill for something created like this:
[AS]this.createEmptyMovieClip(“myClip”,_root.getNextHighestDepth());
with (myClip) {
beginFill(0xffffff,100);
moveTo(0,0);
lineTo(50,0);
lineTo(50,100);
lineTo(0,100);
lineTo(0,0);
endFill;
}[/AS]
I’d like to change the fill color onRollOver, onRollOut, onRelease, etc., but I don’t know which property to refer to.
I think this link probably would have answered my question, but unfortunately it’s now dead: