It's kind of hard to be descriptive here, but I want one movie clip to move downwards on a page, quickly at first, then decelerating. So I write this in the first frame of the movie clip:
while(this._y<500){
mango=(500-this._y)/30;
this._y += mango;
}
Now, when I do this, I get the old message about my scripting slowing my computer down.
Why isn't it working properly? :l
while(this._y<500){
mango=(500-this._y)/30;
this._y += mango;
}
Now, when I do this, I get the old message about my scripting slowing my computer down.
Why isn't it working properly? :l