Hi all.
This is my first post on this forum although I have found the site handy many a time. I apologise for the amateurish problem. I’m trying to make a loop that will, upon a mouse click reduce the alpha of a movie clip by a small amount on each enterFrame. Because of the large amount of movie clips all with differing target names, this script has to be attached to each of these.
onClipEvent (mouseUp) {
var i = 5;
while (i++<10) {
this.onEnterFrame = function() {
this._alpha -= 3;
};
}
}
Please help guys, I’ve been on this for a long time now and it’s quite frustrating because I know it’s so simple. AAARRRGGG
Thanks very much
Jim