Okay well I just read The tutorial on doing loops and How you can't use them to make visual stuff... But it doesn't say what command you would use instead...sooo any help here?
Example: I want to make a movie clip fade in when its loaded
I tried using something like this
i = 0
while ( i < 100)
{ _alpha = i, i++}
But obvously its not gonna work correctly.. so what would I use instead?
well, that fading in effct doesn't need looping, u can do it by this way:
ActionScript Code:
// make a movie cliponClipEvent(load){this._alpha = 0}onClipEvent(enterFrame){this._alpha+=10}
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI
Yeah I figured this out.. but hey since you must be posting right now I got another quick question
I have a button that on release attaches a movie to a movie clip
but if you keep pressing it it'll just overwrite that movie..
Instead, what kind of If command would I use to make it check if the Movie is already loaded, and if it is.. not overwrite the movie
Check your other post, the code that I've put is your target
__________________
â€* GOD Is Near â€*
Questions Don't PM for Questions . Thanks
An eye for an eye, make the whole world blind
_____________________________________________GHANDI