Lingo Dictionary > L-N > on mouseUpOutside

 

on mouseUpOutside

Syntax

on mouseUpOutside me
	statement(s)
end

Description

System message and event handler; sent when the user presses the mouse button on a sprite but releases it (away from) the sprite.

Example

This statement plays a sound when the user clicks the mouse over a sprite and then releases it outside the bounding rectangle of the sprite:

on mouseUpOutside me
	puppetSound "Professor Long Hair"
end

See also

on mouseEnter, on mouseLeave, on mouseWithin