Ver Mensaje Individual
  #6 (permalink)  
Antiguo 16/09/2011, 12:28
fletcher2009
 
Fecha de Ingreso: noviembre-2010
Mensajes: 94
Antigüedad: 13 años, 6 meses
Puntos: 11
Respuesta: boton en flash abra otro html

Romina, el código para AS3 sería:

Código AS3:
Ver original
  1. function ir(event:MouseEvent):void
  2. {
  3. var adobeURL:URLRequest = new URLRequest("http://www.adobe.com/");
  4. navigateToURL(adobeURL, '_blank' );
  5. }
  6.  
  7. boton.addEventListener(MouseEvent.CLICK, ir);

Última edición por fletcher2009; 16/09/2011 a las 12:39