home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global theImageList, recentPage, ImageWindow, whWindow
- set whWindow to "small"
- if the frame > 5 then
- set photoRect to rect(26, 40, 474, 396)
- set the rect of ImageWindow to photoRect
- end if
- if (the number of lines in theImageList - 1) <= 15 then
- set recentPage to 1
- go("recent1")
- end if
- if ((the number of lines in theImageList - 1) > 15) and ((the number of lines in theImageList - 1) <= 30) then
- set recentPage to 2
- go("recent2")
- end if
- if ((the number of lines in theImageList - 1) > 30) and ((the number of lines in theImageList - 1) <= 45) then
- set recentPage to 3
- go("recent3")
- end if
- if ((the number of lines in theImageList - 1) > 45) and ((the number of lines in theImageList - 1) <= 60) then
- set recentPage to 4
- go("recent4")
- end if
- if (the number of lines in theImageList - 1) > 60 then
- set recentPage to 5
- go("recent5")
- end if
- end
-