is there a way to loadmovie with a specific frame? like if i just want to play frame 9?
_level1.gotoAndPlay(9)
You mean after you load a movie, you want to go to frame 9 within that movie?
Just put this after you load your movie:
_root.myloadedmovie.goToAndPlay(9);
Change _root.myloadedmovie to the path to your movie.
If you don’t know the path, just follow this tutorial.
It should go directly to that frame after loading the first one.
well if u want to just play frame 9, then it would be gotoAndStop(9);
same thing