home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global CastleLoop, NeighborLoop, RainForestLoop
- startTimer()
- repeat while the timer < (50 * 8)
- if rollOver(9) then
- set the visible of sprite 12 to 1
- updateStage()
- if the mouseDown then
- set CastleLoop to "on"
- play frame "Castle"
- exit repeat
- end if
- else
- set the visible of sprite 12 to 0
- updateStage()
- end if
- if rollOver(10) then
- set the visible of sprite 13 to 1
- updateStage()
- if the mouseDown then
- set NeighborLoop to "on"
- play frame "Neighbrhd."
- exit repeat
- end if
- else
- set the visible of sprite 13 to 0
- updateStage()
- end if
- if rollOver(11) then
- set the visible of sprite 14 to 1
- updateStage()
- if the mouseDown then
- set RainForestLoop to "on"
- play frame "RF"
- exit repeat
- end if
- else
- set the visible of sprite 14 to 0
- updateStage()
- end if
- if rollOver(16) then
- set the visible of sprite 17 to 1
- updateStage()
- if the mouseDown then
- play frame "Demo"
- exit repeat
- end if
- else
- set the visible of sprite 17 to 0
- updateStage()
- end if
- if rollOver(48) then
- if the mouseDown then
- play done
- exit repeat
- end if
- end if
- end repeat
- end
-