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

  1. on exitFrame
  2.   set changed to setPanelCursors()
  3.   if rollOver(2) = 1 then
  4.     set the visible of sprite 2 to 1
  5.     cursor([551, 552])
  6.     set changed to 1
  7.   else
  8.     set the visible of sprite 2 to 0
  9.   end if
  10.   if rollOver(3) = 1 then
  11.     set the visible of sprite 3 to 1
  12.     cursor([551, 552])
  13.     set changed to 1
  14.   else
  15.     set the visible of sprite 3 to 0
  16.   end if
  17.   if rollOver(4) = 1 then
  18.     set the visible of sprite 4 to 1
  19.     cursor([551, 552])
  20.     set changed to 1
  21.   else
  22.     set the visible of sprite 4 to 0
  23.   end if
  24.   if changed = 0 then
  25.     cursor(-1)
  26.   end if
  27.   go(the frame)
  28. end
  29.