home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 September / WPCSEP96.ISO / artw08f.dxr / 00500.ls < prev    next >
Encoding:
Text File  |  1996-07-09  |  412 b   |  19 lines

  1. on exitFrame
  2.   global ARTImageGO
  3.   go(the frame)
  4.   set the locH of sprite 48 to 2000
  5.   if the mouseUp and (ARTImageGO = 0) then
  6.     set ARTImageGO to 1
  7.   end if
  8.   if the mouseDown and (ARTImageGO = 1) then
  9.     set ARTImageGO to 2
  10.   end if
  11.   if the mouseDown and (ARTImageGO = 2) then
  12.     puppetSprite(2, 1)
  13.     set the locH of sprite 2 to 1500
  14.     updateStage()
  15.     set x to the frame
  16.     go(x + 1)
  17.   end if
  18. end
  19.