aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/tests/events.lingo
blob: 86ca9bcedc182bc80caec4a510706156eab42bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
on exitFrame
  beep
end exitFrame

on enterFrame me
  beep
end

on annoy howMuch
	beep random(howMuch)
	alert "Aren't handlers fun?"
end annoy

on annoy2 howMuch
	beep random(howMuch)
	alert "Aren't handlers fun?"
end annoy2 howMuch