home *** CD-ROM | disk | FTP | other *** search
/ PC Home 44 / PC_Home_Issue_44.iso / director / software.dxr / 00085.ls < prev    next >
Encoding:
Text File  |  1996-03-18  |  1.2 KB  |  50 lines

  1. on enterFrame
  2.   if rollOver(24) then
  3.     set the visible of sprite 25 to 1
  4.     set the visible of sprite 24 to 0
  5.   end if
  6.   if rollOver(26) then
  7.     set the visible of sprite 27 to 1
  8.     set the visible of sprite 26 to 0
  9.   end if
  10.   if rollOver(28) then
  11.     set the visible of sprite 29 to 1
  12.     set the visible of sprite 28 to 0
  13.   end if
  14.   if rollOver(30) then
  15.     set the visible of sprite 31 to 1
  16.     set the visible of sprite 30 to 0
  17.   end if
  18.   if rollOver(32) then
  19.     set the visible of sprite 33 to 1
  20.     set the visible of sprite 32 to 0
  21.   end if
  22.   if not rollOver(24) then
  23.     set the visible of sprite 24 to 1
  24.     set the visible of sprite 25 to 0
  25.   end if
  26.   if not rollOver(26) then
  27.     set the visible of sprite 26 to 1
  28.     set the visible of sprite 27 to 0
  29.   end if
  30.   if not rollOver(28) then
  31.     set the visible of sprite 28 to 1
  32.     set the visible of sprite 29 to 0
  33.   end if
  34.   if not rollOver(30) then
  35.     set the visible of sprite 30 to 1
  36.     set the visible of sprite 31 to 0
  37.   end if
  38.   if not rollOver(32) then
  39.     set the visible of sprite 32 to 1
  40.     set the visible of sprite 33 to 0
  41.   end if
  42. end
  43.  
  44. on exitFrame
  45.   if not soundBusy(2) then
  46.     sound playFile 2, "trk18b8s.wav"
  47.   end if
  48.   go(the frame)
  49. end
  50.