home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global dateWindow, firstDayOfMonthList, thisMonth, monthList, thisYear
- set the castNum of sprite 4 to the castNum of sprite 4 + 1
- updateStage()
- repeat while the mouseDown
- nothing()
- end repeat
- reminderTest()
- set x to getPos(monthList, thisMonth)
- if x > 22 then
- set x to 1
- set thisYear to thisYear + 1
- leapCheck()
- setUpYear()
- else
- set x to x + 2
- end if
- set the castNum of sprite 2 to 40 + ((x + 1) / 2)
- updateStage()
- set thisMonth to getAt(monthList, x)
- put thisMonth && thisYear into field "monthName"
- go("loopBack")
- end
-