Este código está en un "Clip de película", había hecho lo de la imagen en un botón con los estados pero los dos, el clip y el botón no pueden estar en la misma posición, que debo hacer o cúal es su recomendación.
Gracias
onClipEvent (load)
{
num = 0;
this.title1.gotoAndStop(num);
this.title2.gotoAndStop(num);
this.nums1.gotoAndStop(num);
this.nums2.gotoAndStop(num);
this.icons.gotoAndStop(num);
}
on (rollOver)
{
if (_root.link != num)
{
this.gotoAndPlay("home");
} // end if
}
on (releaseOutside, rollOut)
{
if (_root.link != num)
{
this.gotoAndPlay(_totalframes - _currentframe);
} // end if
}
on (release)
{
if (_root.link != num && _root.animation == 1)
{
_root.animation = 0;
_root.link_prev = _root.link;
_parent["home" + _root.link].gotoAndPlay("home");
_root.link = num;
_root.play();
} // end if
}
