Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
The Ultimate Slide Show MX
Author: Joachim Schnier
| Website: http://www.cancerinform.net/ |
Actionscript: last frame
In order to remove previously loaded slides we have to remove the slideholders created with ´duplicateMovieClip()´. So we create a frame after all the slide show frames with the following script, which also clears Interval and unloads slides.
function removeClips () {
for (j=1;j<=10;j++) {
_root["pic_"+j].removeMovieClip();
}
}
removeClips();
_root.clearEverything();
_root.slideHolder.unloadMovie();
//go back to the actionscript frames and automatically to the main menu
gotoAndPlay(1);
| » Level Intermediate |
|
|
Added: : 2002-06-29
Rating: 5.78 Votes: 64
Hits: 4608
|
| » Author |
|
The author is a basic scientist doing cancer research.
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (277 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|