home *** CD-ROM | disk | FTP | other *** search
/ PC Computing Volume 6 #2 (Spanish) / axixo.iso / CINE.DIR / 00003_Script_3 next >
Text File  |  1999-01-21  |  1KB  |  52 lines

  1. on exitFrame
  2.   SET THE VISIBLE OF SPRITE 20 TO ROLLOVER (24)
  3.   SET THE VISIBLE OF SPRITE 21 TO ROLLOVER (25)
  4.   SET THE VISIBLE OF SPRITE 22 TO ROLLOVER (26)
  5.   
  6.   if rollover(17) then
  7.     set the visible of sprite 18 to rollover(17)
  8.     puppetsound "chango1.aif"
  9.     updatestage
  10.     repeat while rollover(17) and not the mousedown
  11.     end repeat
  12.     puppetsound 0   
  13.   end if
  14.   
  15.   if rollover(15) then
  16.     set the visible of sprite 16 to rollover(15)
  17.     puppetsound "chango2.aif"
  18.     updatestage
  19.     repeat while rollover(15) and not the mousedown
  20.     end repeat
  21.     puppetsound 0   
  22.   end if
  23.   
  24.   if rollover(24) then
  25.     set the visible of sprite 20 to rollover(24)
  26.     puppetsound "agua1.aif"
  27.     updatestage
  28.     repeat while rollover(24) and not the mousedown
  29.     end repeat
  30.     puppetsound 0   
  31.   end if
  32.   
  33.   if rollover(25) then
  34.     set the visible of sprite 21 to rollover(25)
  35.     puppetsound "agua2.aif"
  36.     updatestage
  37.     repeat while rollover(25) and not the mousedown
  38.     end repeat
  39.     puppetsound 0   
  40.   end if
  41.   
  42.   if rollover(26) then
  43.     set the visible of sprite 22 to rollover(26)
  44.     puppetsound "agua3.aif"
  45.     updatestage
  46.     repeat while rollover(26) and not the mousedown
  47.     end repeat
  48.     puppetsound 0   
  49.   end if
  50.   
  51.   GO TO THE FRAME
  52. end