home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 February / netCD41.iso / pc / PC16.DIR / 00121.ls < prev    next >
Encoding:
Text File  |  1997-12-08  |  433 b   |  23 lines

  1. on enterFrame
  2.   repeat with n = 30 to 48
  3.     if rollOver(n) then
  4.       if not (the puppet of sprite n) then
  5.         puppetSprite(n, 1)
  6.         set the member of sprite n to the number of the member of sprite n + 1
  7.       end if
  8.       next repeat
  9.     end if
  10.     puppetSprite(n, 0)
  11.   end repeat
  12. end
  13.  
  14. on exitFrame
  15.   global gt
  16.   if (gt = 1) and soundBusy(1) then
  17.     go(the frame)
  18.   end if
  19.   if gt = 0 then
  20.     go(the frame)
  21.   end if
  22. end
  23.