on (rollOver)
{
CPAnima.onEnterFrame = function ()
{
if (this._currentframe != 12)
{
this.nextFrame();
}
else
{
this.stop() ;
delete this["onEnterFrame"];
}
};
}
on (rollOut)
{
CPAnima.onEnterFrame = function ()
{
if (this._currentframe != 1)
{
this.prevFrame();
}
else
{
this.stop() ;
delete this["onEnterFrame"];
}
};
}
He probado varias opciones y nada...¿que me recomendais?
![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)