home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- set the movieRate of sprite 21 to 0
- set the startTime of sprite 21 to 5
- set the visible of sprite 21 to 1
- updateStage()
- startTimer()
- repeat while the timer < 15
- nothing()
- end repeat
- end
-
- on exitFrame
- global vidCast, mStartvolume
- set the sound of cast vidCast to 1
- set the volume of sprite 21 to mStartvolume
- set the movieRate of sprite 21 to 1
- updateStage()
- set x to 0
- repeat while the movieRate of sprite 21
- if the mouseDown then
- set x to 1
- exit repeat
- end if
- updateStage()
- end repeat
- set the movieRate of sprite 21 to 0
- set the startTime of sprite 21 to 1
- updateStage()
- if x = 0 then
- set curPal to the framePalette
- puppetPalette(curPal)
- puppetTransition(50, 1, 32)
- go("v2areturn")
- else
- if x = 1 then
- set curPal to the framePalette
- puppetPalette(curPal)
- puppetTransition(50, 1, 32)
- go("v2areturn")
- end if
- end if
- end
-