Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/11/2008, 00:09
Avatar de carlxime
carlxime
 
Fecha de Ingreso: marzo-2007
Ubicación: México
Mensajes: 180
Antigüedad: 17 años, 1 mes
Puntos: 6
Respuesta: por que no me funciona el boton ?

Pues sí debe ser con on(release). Intenta ponerle el http:// a la liga de la página.

Código actionscript:
Ver original
  1. on (rollOver)
  2. {
  3.     if (_root.link != 2)
  4.     {
  5.         this.gotoAndPlay("s1");
  6.     } // end if
  7. }
  8.  
  9. on (releaseOutside, rollOut)
  10. {
  11.     if (_root.link != 2)
  12.     {
  13.         this.gotoAndPlay("s2");
  14.     } // end if
  15. }
  16.  
  17. on (release)
  18. {
  19.        getURL("http://www.folotog.cl", "_self");
  20. }

Saludos.