home *** CD-ROM | disk | FTP | other *** search
/ Digital Design Material S…es 2: Stone Material Raw / 石素材王.iso / pc / stage.dir / 00056.ls < prev    next >
Encoding:
Text File  |  1997-01-21  |  572 b   |  19 lines

  1. on pen
  2.   global selectnum, gfilename, showsize
  3.   set gfilename to line selectnum of field "files"
  4.   if (string(the windowList) contains "showpict") = 0 then
  5.     set rectlist to rect(100, 100, 100 + 400, 100 + 400)
  6.     set showsize to "1:2"
  7.     set the windowType of window "showpict" to 8
  8.   else
  9.     set rectlist to the rect of window "showpict"
  10.   end if
  11.   set the title of window "showpict" to gfilename & "(" & showsize & ")"
  12.   set the rect of window "showpict" to rectlist
  13.   open(window "showpict")
  14.   tell window "showpict"
  15.     showpict()
  16.     cursor(-1)
  17.   end tell
  18. end
  19.