desperate hlp.....
desperate hlp.....
Out of context: Reply #20
- Started
- Last post
- 25 Responses
- rasko40
put that code on the first frame of your base .fla
_root.homebutton is the name of the button that is going to trigger the action.
in the file to be loaded put this in frame 1:
this.onEnterFrame = function() {
this.gotoAndPlay("intro");
this.onEnterFrame = null;
}
stop();you have an intro animation labelled intro, a stop frame then an outro animation labelled outro
put this on the last frame:loadMovieNum(_level0.nextMovie,1...
you can then add all the buttons you need to the code in your first frame, just name the buttons. no code goes on the buttons themselves.
not the best way probably but it works.