Flash MX delema
Flash MX delema
Out of context: Reply #2
- Started
- Last post
- 7 Responses
- loahn0
Best thing to do is create a function in swf1 eg:
function playSceneX() { _root.gotoAndPlay("someScene");
}then from a btn in swf2 (which i presume is being loaded in using loadMovie() or loadMovieNum()) use:
// if loaded using loadMovie()
onRelease() {
_root.playSceneX()
},// if loaded using loadMovieNum()
onRelease() {
_level0.playSceneX()
}Any help?