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