home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global thisMonth, thisYear
- set y to the mouseV
- if the mouseWord = 1 then
- go("months")
- else
- hilite word 2 of field "monthName"
- repeat while the mouseDown
- if the mouseV < y then
- set thisYear to thisYear + 1
- put thisMonth && thisYear into field "monthName"
- else
- if the mouseV > y then
- set thisYear to thisYear - 1
- put thisMonth && thisYear into field "monthName"
- end if
- end if
- set y to the mouseV
- end repeat
- leapCheck()
- setUpYear()
- go("loopBack")
- end if
- end
-