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

  1. on enterFrame
  2.   global pointCursor
  3.   repeat with n = 23 to 27
  4.     if rollOver(n) then
  5.       if not (the puppet of sprite n) then
  6.         puppetSprite(n, 1)
  7.         set the cursor of sprite n to pointCursor
  8.         set the member of sprite n to the number of the member of sprite n + 1
  9.       end if
  10.       next repeat
  11.     end if
  12.     puppetSprite(n, 0)
  13.   end repeat
  14.   repeat with n = 7 to 9
  15.     if rollOver(n) then
  16.       if the scoreColor of sprite n <> 1 then
  17.         if not (the puppet of sprite n) then
  18.           puppetSprite(n, 1)
  19.           set the cursor of sprite n to pointCursor
  20.           set the blend of sprite n to 100
  21.         end if
  22.       end if
  23.       next repeat
  24.     end if
  25.     puppetSprite(n, 0)
  26.   end repeat
  27. end
  28.  
  29. on exitFrame
  30.   if the movieTime of sprite 36 < 2770 then
  31.     go(the frame)
  32.   end if
  33. end
  34.