i’m trying to get it so a MC1 on top of MC2 slowly fades in. It starts with alpha of 0 and i put it in a while loop (on MC1):
onClipEvent(load) {
this._alpha = 0;
var i = 0;
do {
this._alpha += 1;
} while (i < 100);
}
it says that the script contains no erros, but when i try to test it, i get the error:
“A script in this movie is causing Flash player to run slowly. If it continues to run, your computer may become unresponsive. Do you want to abort the script?”
What do I do?