home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global gstp
- set gstp to 0
- cursor([7, 8])
- end
-
- on stopMovie
- global gsnd, gdep, gstp
- if gstp = 0 then
- set the soundLevel to gsnd
- if the machineType <> 256 then
- set the colorDepth to gdep
- end if
- end if
- end
-
- on cursorh
- global gtime1, gflag1
- set gflag1 to gflag1 * -1
- if gflag1 = 1 then
- cursor([7, 8])
- else
- cursor([9, 10])
- end if
- set gtime1 to the timer + 30
- end
-
- on waith num
- global gtime1
- set num to the timer + num
- repeat while the timer < num
- if the timer > gtime1 then
- cursorh()
- end if
- end repeat
- end
-
- on waitsndh
- global gtime1
- repeat while soundBusy(3)
- if the timer > gtime1 then
- cursorh()
- end if
- end repeat
- end
-