home *** CD-ROM | disk | FTP | other *** search
/ Cheeks / Cheeks.iso / mac / Cheeks.68k / Cheeks.dxr / 00072.ls < prev    next >
Encoding:
Text File  |  1995-05-09  |  466 b   |  20 lines

  1. on zoom
  2.   global switch
  3.   if switch <> 1 then
  4.     set the locH of sprite 30 to 320
  5.     set the locV of sprite 30 to 240
  6.     set the width of sprite 30 to 640
  7.     set the height of sprite 30 to 480
  8.     updateStage()
  9.     set switch to 1
  10.   else
  11.     set the locH of sprite 30 to 319
  12.     set the locV of sprite 30 to 185
  13.     set the width of sprite 30 to 320
  14.     set the height of sprite 30 to 240
  15.     go(the frame - 1)
  16.     updateStage()
  17.     set switch to 0
  18.   end if
  19. end
  20.