Francois, thought I'd better bring this back into here....
1. FADE IN's >>> yeah, you're right, figured Carl could achieve that himself.
2. TRANSITION JUMP >>> I guess maybe a control variable is called for here, ie: when the transition is running, button actions would be void, the control variable being reset when the transition is completed.
3.
what would be the proper syntax to set movie2 visibility to false within the playing movie3... as I was trying to do......isn't that what I've included in Frame13/14 of the transition mc?....sorry, I get you now....
The way you have it now is
Code:
[COLOR=green]setProperty ("./previous", _visible, false);[/color]
which is actually looking for an mc literally named "./previous". If you convert it to an expression and use
Code:
[COLOR=green]setProperty (/:previous, _visible, false);[/color]
it would target the variable 'previous' on the main-timeline which is created from within the mc's. I would also change the variable syntax to: var /

revious = welcome1; or even simpler
Code:
[COLOR=green]/:previous = welcome1;[/color]
. Apologies for not answering your question first time round.
4.
"....but not when jumping from 3 to 1 for example..." I just put the action:
Code:
[COLOR=green]setProperty ("previous", _visible, false);[/color]
on button 3's actions as you had done with the other two and it seems to work perfect.
dave davdesign@pinkzeppelin.com
^^^^^^^^^^^^^^^^^^^^^