Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/05/2008, 11:32
Hats
 
Fecha de Ingreso: diciembre-2004
Mensajes: 418
Antigüedad: 19 años, 4 meses
Puntos: 2
Respuesta: botones q cambian de url

prueba asi:
link1= "http://www.nose.com";
link2= "http://www.chesu.com";

//por default
sub_link1=link1;


// botones principales
BTNprincipal_uno.onRelease=function(){
sub_link= link1;
}

BTNprincipal_dos.onRelease=function(){
sub_link= link2;
}

///botones secundarios

btn_sub1.onRelease=function(){
getURL(sub_link);
}

btn_sub2.onRelease=function(){
getURL(sub_link);
}

btn_sub3.onRelease=function(){
getURL(sub_link);
}

si no te funciona prueba agregando _root. antes de cada variable.

suerte