home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1998 May / CineCDW_02.iso / Datos / Datos.dat / Internal_26_MEstrLoop.ls < prev    next >
Encoding:
Text File  |  1998-04-13  |  460 b   |  25 lines

  1. global posicion, BotonMenu, BotonTrailer
  2.  
  3. on enterFrame
  4.   set sobrequien to BuscarRollOver(2, 3)
  5.   if sobrequien <> posicion then
  6.     DesactivarPuppets()
  7.     set posicion to sobrequien
  8.     if posicion <> 0 then
  9.       puppetSound("Select2")
  10.     end if
  11.     case sobrequien of
  12.       2:
  13.         seleccionar(BotonMenu)
  14.       3:
  15.         seleccionar(BotonTrailer)
  16.       otherwise:
  17.         set posicion to 0
  18.     end case
  19.   end if
  20. end
  21.  
  22. on exitFrame
  23.   go(the frame)
  24. end
  25.