Hello all,
I’m new here and while seasoned with flash, I’m a total n00b when it comes to AS, still
So, here’s my problem, I’m hoping someone may be able to help…
I have a main swf movie that loads other swfs into into level 1. The first is “intro.swf”, next is “01.swf”, “02.swf” and so forth… At the end of “introl.swf” the last frame says: [AS]loadMovieNum(“01.swf”, 1);[/AS] … and it just goes through the rest of the loadable movies throughout playback… no problem.
In my main swf, I have playback controls… I want to be able to control the swfs in a next chapter and previous chapter manner, so that i can skip to the next chapter at the press of a button…
I know this is wrong and I’m embarrassed to say that I could be way off track here, but this is what I currently have:
on (release) {
if (_root._level1 == "intro.swf")
loadMovieNum("01.swf", 1);
else if (_root._level1 == "01.swf")
loadMovieNum("02.swf", 1);
else if (_root._level1 == "02.swf")
loadMovieNum("03.swf", 1);
else if (_root._level1 == "03.swf")
loadMovieNum("04.swf", 1);
else if (_root._level1 == "04.swf")
loadMovieNum("05.swf", 1);
}
Does anyone have any input? I am trying to basically skip to the next chapter within that level1 there…
Any comments would be greatly appreciated… Thanks in advance!!