home *** CD-ROM | disk | FTP | other *** search
- global BlinkObjekt
-
- on new me
- cursor(0)
- startTimer()
- set BlinkObject to 0
- set the locH of sprite 99 to 780
- set BlinkObjekt to new(script "Blink", 4, 80)
- end
-
- on exitFrame
- if the timer < 850 then
- set the text of cast member "FrameNum" to string(the timer)
- set the text of cast member "AudioSample" to string(the timer * 582)
- set the text of cast member "Videodata" to string(the timer * 1107 / 849)
- set the text of cast member "AudioData" to string(the timer * 502 / 849)
- set the text of cast member "Guesstimate" to string(1509 + random(200))
- set tid to the timer * 39 / 849
- if tid < 10 then
- set the text of cast member "TimeElapsed" to "0:0" & string(tid)
- else
- set the text of cast member "TimeElapsed" to "0:" & string(tid)
- end if
- set the width of sprite 43 to 95 * the timer / 604
- go(#loop)
- else
- go(#next)
- end if
- end
-