<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.
CODIGO PARA ACTION SCRIPT3 BOTON EN FLASH
ResponderEliminarboton.buttonMode=true;
boton.addEventListener (MouseEvent.CLICK, web);
function web (event:MouseEvent):void
{
navigateToURL (new URLRequest ("http://www.youtube.com"), "_blank");
}
El codigo del boton es compatible con ActionScript 3.0 y 2.0.
ResponderEliminarCODIGO:
function hipervinculo (event:MouseEvent):void
{
var iraURL:URLRequest = new URLRequest ("");
navigateToURL(iraURL);
}
home.addEventListener(MouseEvent.CLICK, hipervinculo);