home *** CD-ROM | disk | FTP | other *** search
/ MAN Special / MAN.iso / MAN / AMEDIDA.DIR / 00039.ls < prev    next >
Encoding:
Text File  |  1997-05-09  |  1.0 KB  |  47 lines

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