home *** CD-ROM | disk | FTP | other *** search
/ Discovering Nature in the City / LUONTOCD.iso / pc / files / story / story.dxr / 00041.ls < prev    next >
Encoding:
Text File  |  1996-12-16  |  401 b   |  19 lines

  1. on exitFrame
  2.   repeat with x = 9 to 11
  3.     if rollOver(x) = 1 then
  4.       puppetSprite(x, 1)
  5.       set the visible of sprite (x + 11) to 1
  6.       updateStage()
  7.       repeat while rollOver(x) = 1
  8.         if the mouseDown then
  9.           exit repeat
  10.         end if
  11.       end repeat
  12.       next repeat
  13.     end if
  14.     set the visible of sprite (x + 11) to 0
  15.     updateStage()
  16.   end repeat
  17.   go(the frame)
  18. end
  19.