1.Crear un nuevo documento flash.
2.Crear un símbolo que sera el helicóptero.
3.Escribir "onClipEvent (load) {
haltura = 0;
km = 0;
limi = 9999;
}
onClipEvent (enterFrame) {
this._x += km;
this._y += haltura;
if (Key.isDown(Key.UP)) {
haltura--;
this._rotation=0;
} else if (Key.isDown(Key.DOWN)) {
if (this._y<limi) {
haltura++;
this._rotation = 0;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
km++;
this._rotation++;
this._xscale = 100;
} else {
if (Key.isDown(Key.LEFT)) {
km--;
this._rotation--;
this._xscale = -100;
}
}
}
"en las acciones del helicóptero.
4.Ya esta!! Así de sencillo...