RosettaCodeData/Task/Events/Lingo/events-2.lingo

9 lines
231 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
-- send event #mouseDown programmatically to sprite 1
sendSprite(1, #mouseDown)
-- send custom event #foo to named sprite "bar"
sendSprite("bar", #foo)
-- send custom event #fooBar to all existing sprites
sendAllSprites(#fooBar)