Skip to main content
Participant
January 25, 2007
Answered

MC to MC variable Passing

  • January 25, 2007
  • 3 replies
  • 219 views
How do we set a variable in a Flash movie clip that was just loaded by the 'master' movie?
This topic has been closed for replies.
Correct answer Chuck45
Had Authorware issues to complete. Finally had time to try works fine. hearty thanks to those ho responded.

3 replies

Chuck45AuthorCorrect answer
Participant
January 26, 2007
Had Authorware issues to complete. Finally had time to try works fine. hearty thanks to those ho responded.
January 25, 2007
Just make sure the loaded movie is fully loaded before you try and do anything, and you can use it just like any normal MovieClip.

The MovieClipLoader class and it's onLoadInit event is the easiest way to do this. Check the docs, they provide examples.
Inspiring
January 25, 2007
when you load a movie into holder, from the root level, that swf can be referenced at:

_root.holder.myVariable = "something something something"

HH