lunes, 4 de julio de 2016

scrip

este es el scrip para las paginas emergentes

<iframe frameborder="NO" height="200" marginheight="0" marginwidth="0" scrolling="YES" src="http://contactososcar.blogspot.com" style="border-color: black; border-style: solid; border-width: 5;" width="300"></iframe>

lo de rojo es donde se va a cambiar la pagina deseada.





    

2 comentarios:

  1. CODIGO PARA ACTION SCRIPT3 BOTON EN FLASH
    boton.buttonMode=true;
    boton.addEventListener (MouseEvent.CLICK, web);

    function web (event:MouseEvent):void
    {
    navigateToURL (new URLRequest ("http://www.youtube.com"), "_blank");
    }

    ResponderEliminar
  2. El codigo del boton es compatible con ActionScript 3.0 y 2.0.
    CODIGO:
    function hipervinculo (event:MouseEvent):void
    {
    var iraURL:URLRequest = new URLRequest ("");
    navigateToURL(iraURL);
    }
    home.addEventListener(MouseEvent.CLICK, hipervinculo);

    ResponderEliminar