stop

Syntax: stop sprite whichFlashSprite
Type: Command
Description: Use this method to stop a Flash movie sprite that is playing. The movie pauses at the current frame.
Example: This frame script stops the Flash movie sprites playing in channels 5 through 10.
on enterFrame 
	repeat with i = 5 to 10
		stop sprite i
	end repeat
end

Related Lingo: hold command

Previous | Next