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

  1. on enterFrame
  2.   global pointCursor
  3.   repeat with n = 23 to 28
  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 not (the puppet of sprite n) then
  17.         puppetSprite(n, 1)
  18.         set the cursor of sprite n to pointCursor
  19.         set the blend of sprite n to 100
  20.       end if
  21.       next repeat
  22.     end if
  23.     puppetSprite(n, 0)
  24.   end repeat
  25. end
  26.  
  27. on exitFrame
  28.   go(the frame)
  29. end
  30.