User Guide
92 ActionScript language elements
Availability: ActionScript 1.0; Flash Lite 1.1
Parameters
level:Number - The level (_level N ) of a loaded movie.
Example
The following example loads an image into a SWF file. When you click unload_btn, the
loaded content is removed.
loadMovieNum("yourimage.jpg", 1);
unload_btn.onRelease = function() {
unloadMovieNum(1);
}
See also
loadMovieNum function, unloadMovie function, loadMovie (MovieClip.loadMovie
method)
Global Properties
Global properties are available in every script, and are visible to every Timeline and scope in
your document. For example, global properties allow access to the timelines of other loaded
movie clips, both relative (
_parent) and absolute (_root). They also let you restrict (this) or
expand (
super) scope. And, you can use global properties to adjust runtime settings like
screen reader accessibility, playback quality, and sound buffer size.
Global Properties summary
Modifiers Property Description
$version Deprecated since Flash Lite Player 2.0. This
action was deprecated in favor of the
System.capabilities.version property.
Contains the version number of Flash Lite.
_cap4WayKeyAS Deprecated since Flash Lite Player 2.0. This
action was deprecated in favor of the
System.capabilities.has4WayKeyAS property.
Indicates whether Flash Lite executes
ActionScript expressions attached to key event
handlers associated with the Right, Left, Up, and
Down Arrow keys.