Play/Pause Btn in AS2
Play/Pause Btn in AS2
Out of context: Reply #3
- Started
- Last post
- 4 Responses
- hiatus0
I have layer1 with <theShowMC> and a stop(); above it.
If the playMC and pauseMC are in the theShowMC(different frames/same layer), can't i put:
on(release){
gotoAndStop(2);
this.stop();
}
On the pauseMC, and:on(release){
gotoAndStop(1);
this.play();
}
On the playMC.
And have a whole animation inside another MC within this <theShowMC>