Search Tutorials
' B3. LAST AND... LEASTThe following code is useful only if you use the play/stop button. this.stopbut.onRelease = function() {
if (togle<>true) {
_root.stop();
_global.played = "stoped";
this.gotoAndStop("playit");
} else {
_root.play();
_global.played = "played";
this.gotoAndStop("stopit");
}
_global.togle = !togle;
};
When the "stopbut" is released it tongles between 2 states and makes the movie to play or stop.
This code can be used to control any clip you want. You'll just have to change the target paths accordingly. There is one more page but it just contains the whole script, in case you want to copy and paste it to your movie. Well... that's all! I hope you'll find this useful.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||
|