Skip to main content
February 10, 2009
Question

play a scene fom a different movie

  • February 10, 2009
  • 2 replies
  • 568 views
hi there, i've got a problem with scenes and i'm sure i'm doing something stupid but i made a movie and the first scene is the intro with animation and stuff and the next scene is the actual menu. this menu has several links and when the user click on the link it goes to a different movie. so the problem is, i want the user to be able to go back to the menu, which is actually on the second scene from the original movie and i don't want it to play the first intro scene.

how do i get a new movie to play a specific scene from another movie?!

thanks a lot and i hope somebody can help me.

joao ricardo
This topic has been closed for replies.

2 replies

AttaBoy2
Inspiring
February 12, 2009
from the master.swf:
var myMCL:MovieClipLoader = new MovieClipLoader();
myMCL.loadClip("slave.swf", 5);

this assumes slave.swf is on level 5.
it works for me but it will load the whole swf . I don't think you can load just a particular scene from the loaded swf.
for detailed info go here:

http://www.lynda.com/home/DisplayCourse.aspx?lpk2=202
Known Participant
February 10, 2009
February 12, 2009
hey thanks for your reply i will try that and get back to you. :)