Flash Question - help!
Flash Question - help!
Out of context: Reply #8
- Started
- Last post
- 8 Responses
- autonoma0
This is one way to do it.
Say you have clipOne and clipTwo on the _root timeline. Inside of each of these rests a button. You would put something like this on clipOne's button:
on (press) {
if (_root.clipTwo.open = true) {
_root.clipTwo.gotoAndPlay('endSe...
gotoAndPlay('openingSequence');
_root.clipTwo.open = false;
open = true;
} else {
gotoAndPlay('openingSequence');
}
}