home *** CD-ROM | disk | FTP | other *** search
/ Cocktail Hour / image.iso / COCKTAIL.DIR / spirits_5.ls < prev    next >
Encoding:
Text File  |  1997-03-05  |  538 b   |  18 lines

  1. on mouseDown
  2.   set bDown to the clickOn
  3.   set the visible of sprite (bDown + 3) to 1
  4.   updateStage()
  5.   repeat while the mouseDown
  6.   end repeat
  7.   set the visible of sprite (bDown + 3) to 0
  8.   set the visible of sprite 11 to not (the visible of sprite 11)
  9.   set the visible of sprite 12 to not (the visible of sprite 12)
  10.   if the cursor of sprite 12 = 0 then
  11.     set the cursor of sprite 12 to [34, 35]
  12.     set the cursor of sprite 10 to 0
  13.   else
  14.     set the cursor of sprite 10 to [34, 35]
  15.     set the cursor of sprite 12 to 0
  16.   end if
  17. end
  18.