home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global gLastRollover
- set gLastRollover to the clickOn
- puppetSprite(gLastRollover, 1)
- repeat while the mouseDown
- if rollOver(gLastRollover) then
- set the castNum of sprite gLastRollover to the number of member (gLastRollover & "hi")
- else
- set the castNum of sprite gLastRollover to the number of member (gLastRollover & "or")
- end if
- updateStage()
- end repeat
- end
-
- on mouseUp
- global gLastRollover
- if not rollOver(gLastRollover) then
- pupsOff()
- else
- puppetSound("Switch Flick")
- updateStage()
- repeat while soundBusy(1)
- end repeat
- pupsOff()
- puppetSprite(2, 0)
- go(marker(1))
- end if
- end
-