home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1995 September / PCD0995.ISO / files / shared.dir / 05284.ls < prev    next >
Encoding:
Text File  |  1994-12-18  |  381 b   |  17 lines

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