Play/Pause Btn in AS2
Play/Pause Btn in AS2
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- duckseason0
play_mc.onRelease = function() {
if (playing) {
this.gotoAndStop(2);
playing = false;
return;
}
this.gotoAndStop(1);
playing = true;
};or something along those lines