Lingo Dictionary > S > stop (Flash)

 

stop (Flash)

Syntax

sprite(whichFlashSprite).stop()
stop sprite whichFlashSprite

Description

Flash command; stops a Flash movie sprite that is playing in 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
		sprite(i).stop()
	end repeat
end

See also

hold