Cita:
on (rollOver)
{ this.stop() }
onClipEvent(load){
velocidad=.01;
centroX=225;}
onClipEvent (enterFrame){
disX=_root._xmouse-centroX;
this._x+=(disX*velocidad);
if (this._x>0) {this._x=-1810;}
if (this._x<-1810) {this._x=0;}
}
pero hay algo que quice hacer y no me sale, quiero que al hacer clic sobre este banner se pare por completo para eso agregue esto.on (rollOver)
{ this.stop() }
onClipEvent(load){
velocidad=.01;
centroX=225;}
onClipEvent (enterFrame){
disX=_root._xmouse-centroX;
this._x+=(disX*velocidad);
if (this._x>0) {this._x=-1810;}
if (this._x<-1810) {this._x=0;}
}
Cita:
funciona bien se para por completo al hacer clic, pero no se como hacer para que al volver a hacer clic continue rotanto como al inicio, que le agrego a este ultimo codigo?? para hacer eso??, por que la hacer clic el banner se para y ya no se desplaza mas, de ante mano muchas gracias. on (press){
velocidad=.0;
}
velocidad=.0;
}