User Guide

Table Of Contents
unloadMovieNum() 45
Description
Function; removes a movie clip from Flash Lite that was loaded by means of loadMovie(),
loadMovieNum(), or duplicateMovieClip()”.
Example
When the user presses the 3 key, the following code responds by unloading the draggable_mc
movie clip on the main timeline and loading movie.swf into level 4 of the document stack:
on (keypress "3") {
unloadMovie ("/draggable_mc");
loadMovieNum(“movie.swf”, 4);
}
When the user presses the 3 key, the following example unloads the movie that was loaded
into level 4:
on (keypress "3") {
unloadMovieNum(4);
}
See also
loadMovie()
unloadMovieNum()
Availability
Flash Lite 1.0.
Usage
unloadMovieNum(level)
Operands
level The level (_levelN) of a loaded movie.
Description
Function; removes a movie clip from Flash Lite that was loaded by means of loadMovie(),
loadMovieNum(), or duplicateMovieClip()”.
Normally, Flash Lite displays a single SWF file, and then closes. The un
loadMovieNum()
function lets you affect several SWF files at once and switch among SWF files without loading
another HTML document.
See also
loadMovieNum()