play

Syntax: play sprite whichFlashSprite
Type: Command
Description: Use this command to play a Flash movie sprite. If the movie is stopped, it plays from the current frame. If the movie is at its last frame, it plays from the first frame.
Example: This frame script checks to see if the Flash movie sprite in channel 5 is playing and, if it is not, it starts the movie.
on enterFrame
	if the playing of sprite 5 = FALSE then
		play sprite 5
	end if
end


Previous | Next