Quote:
Originally posted by i++
either ask the _currentframe of _level2 from _level0:
ActionScript Code:
if(_level2._currentframe >= 100){...}
i++
|
this seems the most understandable to my newbie knowledge of scripting... but my newbieness is most with "if" commands...
so then, what would come after the if statement? if correct, it would load the next movie, however, what if it hasn't reached frame 100 yet? this is kind of like a oldschool preloader in a sense right? if frame x is loaded, go to and play frame x, then if that came back false, the next frame would tell it to go back to frame 1 or something...but my question is can all this checking and rechecking be done all within the one script of the "on (release)"
so it would be like this...
on (release) {
_root._level2.gotoAndPlay(50)
if(_level2._currentframe >= 100)
?????
?????
loadMovieNum(links.swf,2)
}
what replaces the question marks above? what if it hasn't reached 100, then how do you repeat the checking process until it has reached 100, then continue on in the script, loading the next movie via the loadMovieNum action?
thanks for the help so far, appreciate it greatly...