home *** CD-ROM | disk | FTP | other *** search
/ PC Home 49 / PC_Home_Issue_49.iso / musicbox / compwswl.dxr / 00031.ls < prev    next >
Encoding:
Text File  |  1996-06-28  |  418 b   |  21 lines

  1. on exitFrame
  2.   set changed to setPanelCursors()
  3.   repeat with chan = 7 to 11
  4.     if rollOver(chan) then
  5.       set the visible of sprite chan to 1
  6.       cursor([551, 552])
  7.       set changed to 1
  8.       next repeat
  9.     end if
  10.     set the visible of sprite chan to 0
  11.   end repeat
  12.   if rollOver(13) then
  13.     cursor([551, 552])
  14.     set changed to 1
  15.   end if
  16.   if changed = 0 then
  17.     cursor(-1)
  18.   end if
  19.   go(the frame)
  20. end
  21.