home *** CD-ROM | disk | FTP | other *** search
- on startRollover
- global thisdot
- set thisdot to the rollOver
- if (thisdot < 10) or (thisdot > 18) then
- exit
- end if
- puppetSprite(thisdot, 1)
- set the memberNum of sprite thisdot to member "onDot"
- puppetTransition(3, 0, 128)
- updateStage()
- if the mouseDown then
- mouseDown()
- end if
- end
-
- on endRollover
- global thisdot
- puppetSprite(thisdot, 0)
- puppetTransition(3, 0, 128)
- updateStage()
- end
-
- on mouseDown
- global gsubMenuList, thisdot
- set the memberNum of sprite thisdot to member "pickDot"
- puppetTransition(3, 0, 128)
- updateStage()
- repeat while the mouseDown
- if not rollOver(thisdot) then
- exit repeat
- end if
- end repeat
- set the memberNum of sprite thisdot to member "selectDot"
- puppetTransition(3, 0, 128)
- updateStage()
- if rollOver(thisdot) then
- puppetSprite(thisdot, 0)
- set SubSection to getAt(gsubMenuList, thisdot - 9)
- go(SubSection)
- end if
- end
-