Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/11/2010, 16:29
kuribo2010
 
Fecha de Ingreso: noviembre-2010
Mensajes: 2
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: Ayuda con menu flash 23163 TM

gracias por no responder pero lo pude ayar solo probando todo el dia

simplemente se tiene q agregar esta clave en la ultima parte del codigo getURL("index.html");
osea aqui

on (release)
{
if (_root.link != num)
{
_root.link_prev = _root.link;
_parent._parent["item" + _root.link].gotoAndPlay("s2");
_root.link = num; <-------- aqui se agrega getURL("index.html");} // end if
}

el codigo quedaria asi

onClipEvent (load)
{
num = 2;
_parent.ti1.gotoAndStop(num);
_parent.ti2.gotoAndStop(num);
}
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)
{
_root.link_prev = _root.link;
_parent._parent["item" + _root.link].gotoAndPlay("s2");
_root.link = num;
getURL("index.html");
} // end if
}