home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 November / SHOWCASE.ISO / files / shared.dir / 05284_Script_5284 < prev    next >
Text File  |  1995-06-14  |  430b  |  19 lines

  1. on exitFrame
  2.   global gpressed
  3.   repeat with n = 2 to 12
  4.     if rollover (n) then 
  5.       set the visibility of sprite n to true
  6.       set the ink of sprite n = 8
  7.       set the visibility of sprite gpressed to true
  8.       set the ink of sprite gpressed = 0
  9.       
  10.     else
  11.       if n <> gpressed then
  12.         set the visibility of sprite n = false
  13.       end if
  14.       
  15.     end if
  16.   end repeat
  17.   go to the frame
  18. end
  19.