Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Global Functions > stop() | |||
Flash Lite 1.0.
stop()
None.
Function; stops the SWF file that is currently playing. The most common use of this function is to control movie clips with buttons.
The following statement calls the stop() function when the user clicks the button associated with this event handler:
on(release) {
stop();
}
|
|
|
|