home *** CD-ROM | disk | FTP | other *** search
- on showpict
- global gfilename, showsize
- if voidp(showsize) then
- set showsize to "1:2"
- end if
- set oldframe to the frame
- go(marker("loading"))
- unLoad()
- repeat with i = 1 to 3
- set the visible of sprite i to 0
- end repeat
- set x to getPos(["2:1", "1:1", "1:2"], showsize)
- set goframe to integer(char 4 to 6 of gfilename) + 10
- preLoad(goframe, goframe)
- go(goframe)
- set the visible of sprite x to 1
- end
-
- on zoom
- global showsize, gfilename
- set slist to ["2:1": 1, "1:1": 2, "1:2": 4]
- set x to findPos(slist, showsize)
- set oldpoint to (the clickLoc - the loc of sprite x) * getAt(slist, x)
- if the optionDown then
- if x = 3 then
- beep()
- exit
- else
- set the visible of sprite x to 0
- set x to x + 1
- end if
- else
- if x = 1 then
- beep()
- exit
- else
- set the visible of sprite x to 0
- set x to x - 1
- end if
- end if
- set showsize to getPropAt(slist, x)
- set the title of window "showpict" to gfilename & "(" & showsize & ")"
- set the loc of sprite x to the clickLoc - (oldpoint / getAt(slist, x))
- set the visible of sprite x to 1
- end
-
- on linkdata
- set seriese to "stn"
- repeat with i = 1 to 300
- if i < 10 then
- set it to seriese & "00" & i & ".pic"
- else
- if i < 100 then
- set it to seriese & "0" & i & ".pic"
- else
- set it to seriese & i & ".pic"
- end if
- end if
- set the fileName of member (100 + i) to pathName() & "pict:" & it
- set the name of member (100 + i) to it
- set the regPoint of member (100 + i) to point(0, 0)
- end repeat
- beep()
- end
-
- on check
- repeat with i = 10 to 310
- go(i)
- put i
- put the width of sprite 1 & ":1600"
- put the width of sprite 2 & ":800"
- put the width of sprite 3 & ":400"
- end repeat
- end
-