home *** CD-ROM | disk | FTP | other *** search
/ GQ - Louise, World Cup, …remy Clarkson, Armageddon / GQCD.iso / files / sprtmain.dxr / 00061.ls < prev    next >
Encoding:
Text File  |  1998-05-21  |  406 b   |  20 lines

  1. global gMasterObj
  2.  
  3. on exitFrame
  4.   repeat with i = 2 to 6
  5.     if rollOver(i) then
  6.       setCursorExemption(gMasterObj, 1)
  7.       if the mouseDown then
  8.         cursor([2, 2])
  9.       else
  10.         cursor([1, 2])
  11.       end if
  12.       setState(getAt(the actorList, i - 1), 1)
  13.       next repeat
  14.     end if
  15.     setState(getAt(the actorList, i - 1), 0)
  16.   end repeat
  17.   autoRollover(gMasterObj, 7, 8)
  18.   go(the frame)
  19. end
  20.