5.9.10

Enlace web Flash CS3

0 comentarios
En Flash CS3 no me ha funcionado el enlace web en el botón de:

on(release)  {
getURL ("http://www.todosmisapuntes.es","_blank");
}

sino que he tenido que utilizar:

stage.addEventListener(MouseEvent.CLICK, myButtonFunction);
function myButtonFunction(activar:Event) {
 
var peticion:URLRequest = new URLRequest("http://www.todosmisapuntes.es");
navigateToURL(peticion);
}
 
Solamente faltaría sustituir la dirección web por la que corresponda. 

0 comentarios: