home *** CD-ROM | disk | FTP | other *** search
/ MAN Special / MAN.iso / MAN / ESPECIAL.DIR / 00038_especial_2.ls < prev    next >
Encoding:
Text File  |  1997-05-09  |  966 b   |  46 lines

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