home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global gHighLightPos
- set topWin to getAt(the rect of sprite 24, 2)
- set bottomWin to getAt(the rect of sprite 24, 4)
- if getAt(gHighLightPos, 2) <> 0 then
- ActiveField(3)
- CheckSelection3()
- repeat while the mouseDown and not (the mouseUp)
- if (the mouseV < (bottomWin + 8)) and (the mouseV > bottomWin) then
- SetWindow1(3, 6)
- next repeat
- end if
- if (the mouseV > (topWin - 8)) and (the mouseV < topWin) then
- SetWindow1(3, 5)
- next repeat
- end if
- CheckSelection3()
- end repeat
- if the doubleClick then
- GotoSelectedPage()
- end if
- end if
- end
-