Does anyone know how to go to a frame or scene of one movie from another movie? Like if you click a button in movie#2 it will go to scene 2 of movie 1, or frame 5 of movie 1, etc. ?
thanks
J
where are the movies in relation to each other? are they all loaded into the same instance of flash player (using loadMovie/loadMovieNum) or are they separate movies on a webpage?
if that is the case you can use a local connection object
if they are in the same flash player you can target using actionscript, eg from a movie loaded into a movie clip in another movie you can target the main timeline (of the movie that did the loading) using
_root.gotoAndPlay("framelabel");
you'll have to add frame labels to the frames within your movie you want to be able to go to. you can't use scene names if the goto action has to target a different timeline.
The movies are currently all in the same folder and I was going to load each of them into the one browser window. Im using Flash 5 though, so is it still possible?
in the embed tag.
(note the id in the embed tag is for Mozilla and it's variants, I don't have a copy of any of those browsers on this machine to test. but i think with that you can get the GotoFrame method by creating an object using document.getElementById on the embed tag, that is the "else" part of the function)