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

  1. global posicion, BotonSalir, BotonInfo, BotonMP1, BotonMP2, BotonMP3
  2.  
  3. on enterFrame
  4.   set sobrequien to BuscarRollOver(2, 6)
  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(BotonSalir)
  14.       3:
  15.         seleccionar(BotonInfo)
  16.       4:
  17.         seleccionar(BotonMP1)
  18.       5:
  19.         seleccionar(BotonMP2)
  20.       6:
  21.         seleccionar(BotonMP3)
  22.       otherwise:
  23.         set posicion to 0
  24.     end case
  25.   end if
  26. end
  27.  
  28. on exitFrame
  29.   go(the frame)
  30. end
  31.