i got a solution.... but no need to strip.. =P haha
ok well basicly.. flash works in layers starting from _level0 and works its way up from there sticking each layer on top of the next...
therefore... you want each layer to be higher than the last..
so make a variable say
framelevel = 1
and each time a button is clicked tell it to load the movie onto framelevel
and then do i++
got it?
so example
first frame of your movie
framelevel = 0
on the buttons
on (release) {
loadMovieNum("whatever.swf", framelevel);
framelevel++;
}
hope this helps
-Rui