hola, tengo un menu echo en flash para mi web y no se como hacer para hacer link a las webs, al clickear no me entra en index-5.html
por una parte tengo esto:
on (rollOver)
{
if (_root.link != num)
{
_parent.gotoAndPlay("s1");
} // end if
}
on (releaseOutside, rollOut)
{
if (_root.link != num)
{
_parent.gotoAndPlay("s2");
} // end if
}
on (release)
{
if (_root.link != num)
{
_parent._parent["item" + _root.link].gotoAndPlay("s2");
_root.link = num;
} // end if
}
--------------------------------
y por otra en cada item tengo esto:
onClipEvent (load)
{
num = 6;
this.title2.num = num;
this.title2.lnk = "index-5.html";
this.title1.gotoAndStop(num);
this.title2.gotoAndStop(num);
this.title3.gotoAndStop(num);
this.title4.gotoAndStop(num);
this.title5.gotoAndStop(num);
this.title6.gotoAndStop(num);
this.title7.gotoAndStop(num);
}
-------------------------------------------------
gracias