Search tutorials
'
B3. LAST AND... LEAST
The 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.
The last line changes "togle"s value each time the button is clicked from false to true and from true to false.
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.
Happy flashing :-)
| » Level Intermediate |
|
Added: 2005-07-06 Rating: 7 Votes: 28 |
| » Author |
| koritis@hotmail.com |
| » Download |
| Download the files used in this tutorial. |
| Download (17 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!