TransitionManager, changing the movieClip?

var tm:TransitionManager = new TransitionManager(myMC);

How to change the selected movieclip (myMC) for transition manager?

First I would do few fades with myMC, then start using myMC2… myMC3… myMC4…
Can it be changed later (for the ‘var tm’)?

For example adding later in the code,
tm:TransitionManager = TransitionManager(myMC2); // just example - doesnt work
or
tm = TransitionManager(myMC2); // just example - doesnt work

  • trace (tm.content.name); // prints out the name 'myMC’