primero que nada, muchas gracias. Pero tengo un problema, yo tengo el flash 5 y el código que tenia era para un flash mas avanzado. Saque el código de este programa y era este:
Código:
// Action script...
// [onClipEvent of sprite 1 in frame 1]
onClipEvent (load)
{
stop ();
}
onClipEvent (enterFrame)
{
this.onRollOver = function ()
{
this.useHandCursor = true;
};
this.onRelease = function ()
{
getURL("http://Az-Lab.com");
};
if (hitTest(_root._xmouse, _root._ymouse, false))
{
nextFrame ();
}
else
{
prevFrame ();
} // end if
}
// [Action in Frame 1]
getURL("FSCommand:allowscale", false);
quisiera ver quien me puede decir que tengo que cambiar aqui para que funcione en flash 5
Gracias de antemano