hola que tal como estan , soy novato en el mundo javascript espero puedan ayudarme ,
Tengo en un layer 4 fotogramas claves distintos , en cada uno de ellos figura el nombre que aparece en los distintos botones de mi menu ! , como hago para linkear a una url cada uno de ellos?
si pongo ,
on (release) {
getURL("http://www.google.com", "_blank");
}
me dice que tiene que ser un boton para ponerle accion pero si lo convierto en boton, no me deja ingresar texto en acciones tampoco que hago?
quizas esto pueda ayudar en algo , anteriormente este menu linkeaba a un frame seguro
var i = 1;
while (i <= 5)
{
var butNum = _root.menu["b" + i];
var butNum2 = _root.footer["b" + i];
butNum2.index = i;
butNum.index = i;
butNum.bt_name.gotoAndStop(i);
butNum2.bt_name.gotoAndStop(i);
butNum.onRollOver = function ()
{
if (this.index != _root.link)
{
this.gotoAndPlay("s1");
} // end if
};
butNum.onRollOut = function ()
{
if (this.index != _root.link)
{
this.gotoAndPlay("s2");
} // end if
};
butNum2.onRollOver = function ()
{
if (this.index != _root.link)
{
this.gotoAndPlay("s1");
} // end if
};
butNum2.onRollOut = function ()
{
if (this.index != _root.link)
{
this.gotoAndPlay("s2");
} // end if
};
butNum.onRelease = function ()
{
if (this.index != _root.link && _root.sel != 1)
{
_root.menu.btt._y = -3;
_root.footer.bt._y = 17;
_root.menu["b" + _root.link].gotoAndPlay("s2");
_root.footer["b" + _root.link].gotoAndPlay("s2");
_root.link = this.index;
_root.footer["b" + _root.link].gotoAndPlay("s1");
_root.play();
} // end if
};
butNum2.onRelease = function ()
{
if (this.index != _root.link && _root.sel != 1)
{
_root.menu.btt._y = -3;
_root.footer.bt._y = 17;
_root.menu["b" + _root.link].gotoAndPlay("s2");
_root.footer["b" + _root.link].gotoAndPlay("s2");
_root.link = this.index;
_root.menu["b" + _root.link].gotoAndPlay("s1");
_root.play();
} // end if
};
++i;
} // end while
_root.link = 1;
_root.footer.b1.gotoAndStop(10);
_root.menu.b1.gotoAndStop(33);