home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 February / WPCFEB97.ISO / multi / times / data / image.dir / 00069.ls < prev    next >
Encoding:
Text File  |  1996-08-12  |  517 b   |  22 lines

  1. on mouseDown
  2.   repeat while the stillDown
  3.     set the castNum of sprite the clickOn to 70
  4.     updateStage()
  5.   end repeat
  6. end
  7.  
  8. on mouseUp
  9.   global theImageList, recentPage, theDeleteLine
  10.   set the castNum of sprite the clickOn to 69
  11.   updateStage()
  12.   if theDeleteLine <> 0 then
  13.     delete line theDeleteLine of theImageList
  14.     setOffStage("29")
  15.     set theDeleteLine to 0
  16.     repeat with n = 30 to 44
  17.       set the castNum of sprite n to cast "blank"
  18.     end repeat
  19.     go(string("recent" & recentPage))
  20.   end if
  21. end
  22.