Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/05/2006, 16:14
Nateskin
 
Fecha de Ingreso: junio-2002
Mensajes: 321
Antigüedad: 21 años, 10 meses
Puntos: 3
tengo una preguntilla...

en el html, he puesto que el ancho sea 100%
el caso que en la animacion he puesto:

this._y = this._y+speed;
this._x = this._x+xspeed;
if ((this._y>=122) or (Stage.width<this._x)) {
this._y = 0;
this._x = random(Stage.width)+5;
xspeed = xspeed*-1;
gotoAndPlay(1);
}


pero el caso es que... la pantalla se autoajusta al ancho y a mi me gustaria que la animacion no se ajustara. que no cambiara de tamaño
¿hay algun metodo?