Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/03/2010, 17:35
sinpelas
 
Fecha de Ingreso: marzo-2010
Mensajes: 4
Antigüedad: 14 años, 2 meses
Puntos: 0
AYUDA. como hacer link en menu flash

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