Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/07/2007, 15:20
deeper
 
Fecha de Ingreso: julio-2007
Mensajes: 5
Antigüedad: 16 años, 9 meses
Puntos: 0
ayuda para dar getURL a botones . . .

tengo un menu que es un clip y dentro hay varios botones cada una con instancia , but1 but2 bu3 . . . cada boton tiene un movimiento y estas acciones
onClipEvent (load)
{
num = 6;
}
on (rollOver)
{
if (_root.link != num)
{
this.gotoAndPlay("s1");
} // end if
}
on (releaseOutside, rollOut)
{
if (_root.link != num)
{
this.gotoAndPlay("s2");
} // end if
}
on (release)
{
if (_root.link != num)
{
_parent["but" + _root.link].gotoAndPlay("s2");
_root.link = num;
} // end if
}

donde tendria que poner el getURL ??? espero entiendan el problema y saludos