El tema de la carga está genial, salvo un .swf q tiene el tipico boton para bajar y subir el texto, y eso mismo es lo q no funciona.. osea.. carga el swf todo bien pero la acciones del boton bajar y subir el texto no funciona ..me explico?
De donde puede venir el error?
les dejo el as que tengo para los botones q bajan y suben el texto.
this.btn_abajo.onRelease = function ()
{
if (_root.cliptexto_new._y > -150)
{
_root.cliptexto_new.y = _root.cliptexto_new.y -100;
} // end if
};
this.btn_arriba.onRelease = function ()
{
if (_root.cliptexto_new._y < 0)
{
_root.cliptexto_new.y = _root.cliptexto_new.y + 100;
} // end if
};
Alguien me podría dar una mano? muchísimas gracias!!!
