02/06/2008, 13:40
|
| | | Fecha de Ingreso: febrero-2004 Ubicación: Barcelona
Mensajes: 719
Antigüedad: 20 años, 9 meses Puntos: 4 | |
Respuesta: Problema Con Este Codigo on (rollOver) {
{this.play()};
}
Pero no consiguo que vuelva a la posicion OUT, como lo haces? no me sale con
on (rollOut) {
{this.stop(1)};
}
>>> yo utilizo este codigo:
on (rollOver)
{
//this.swapDepths(_root.getNextHighestDepth()); sirve para
//traer al frente
_parent.m0.onEnterFrame = function ()
{
if (this._currentframe != 10)
{
this.nextFrame();
}
else
{
this.stop();
delete this["onEnterFrame"];
} // end if
};
}
on (rollOut)
{
_parent.m0.onEnterFrame = function ()
{
if (this._currentframe != 1)
{
this.prevFrame();
}
else
{
this.stop();
delete this["onEnterFrame"];
}
};
} |