home *** CD-ROM | disk | FTP | other *** search
/ MAN Special / MAN.iso / MAN / AMEDIDA.DIR / 00006.ls < prev    next >
Encoding:
Text File  |  1997-05-09  |  554 b   |  27 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 4 to 1
  12.   else
  13.     set the visible of sprite 4 to 0
  14.   end if
  15.   if rollOver(3) then
  16.     set the visible of sprite 5 to 1
  17.   else
  18.     set the visible of sprite 5 to 0
  19.   end if
  20.   if rollOver(2) or rollOver(3) or rollOver(18) then
  21.     cursorhand()
  22.   else
  23.     cursormain()
  24.   end if
  25.   go(the frame)
  26. end
  27.