home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global gtime1, gnum1, gwlist1
- set gtime1 to 60
- set gnum1 to 1
- startTimer()
- waitth(40)
- repeat with n = 162 to 165
- set the memberNum of sprite 1 to n
- updateStage()
- waitth(5)
- end repeat
- waitth(10)
- repeat with n = 166 to 178
- set the memberNum of sprite 1 to n
- updateStage()
- waitth(5)
- end repeat
- waitth(10)
- repeat with n = 179 to 196
- set the memberNum of sprite 1 to n
- updateStage()
- waitth(5)
- end repeat
- unLoadCast(161, 196)
- waitth(30)
- set gwlist1 to [3, 3]
- set gtime1 to 1
- end
-
- on waitth num
- global gtime1
- set num to the timer + num
- repeat while the timer < num
- if the mouseDown then
- exith()
- end if
- if the timer > gtime1 then
- cursorh()
- end if
- end repeat
- end
-
- on cursorh
- global gtime1, gnum1
- set gnum1 to gnum1 * -1
- if gnum1 = 1 then
- cursor([1, 2])
- else
- cursor([3, 4])
- end if
- set gtime1 to the timer + 60
- end
-