home *** CD-ROM | disk | FTP | other *** search
- global gGreenMonster, gPinkMonster, gGreenClickNum, gPinkClickNum, gWhichScreen
-
- on startMovie
- puppetSprite(13, 1)
- puppetSprite(20, 1)
- set gGreenMonster to 1
- set gGreenClickNum to 0
- set gPinkMonster to 0
- set gPinkClickNum to 0
- set gWhichScreen to 1
- end
-
- on returnToIt
- global lastspot
- puppetSound("WaitLoop")
- play frame "ender"
- go(1, string(lastspot))
- end
-
- on thisLocation
- global lastspot
- set lastspot to "DazHelp"
- end
-
- on next
- shutUp()
- go("NextBut")
- end
-
- on prev
- shutUp()
- go("prevBut")
- end
-
- on shutUp
- if soundBusy(1) then
- sound stop 1
- end if
- end
-
- on enterFrame
- if soundBusy(1) then
- set the volume of sound 2 to 128
- else
- set the volume of sound 2 to 255
- end if
- if the timer > 400 then
- if gWhichScreen = 4 then
- set gWhichScreen to 1
- else
- set gWhichScreen to gWhichScreen + 1
- end if
- set the castNum of sprite 20 to the number of member ("Screen" && string(gWhichScreen))
- updateStage()
- startTimer()
- end if
- end
-