aboutsummaryrefslogtreecommitdiff
path: root/engines/director/lingo/tests/events.lingo
blob: a04a12da07effd97e4476a74d78fe154ab5cdbc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
on exitFrame
  beep
end exitFrame

on enterFrame me
  beep
end

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