hola starbro
si tenes un mc llamado "miMovie" (sin comillas)
y tienes este codigo en layer
a=1;
b=5;
miMovie.onEnterFrame = function() {
if (Key.isDown(Key.UP) and Key.isDown(Key.LEFT)) {
this._y -= a;
this._x -= a;
}
if (Key.isDown(Key.UP) and Key.isDown(Key.RIGHT)) {
this._y -= a;
this._x += a;
}
if (Key.isDown(Key.DOWN) and Key.isDown(Key.RIGHT)) {
this._y += a;
this._x += a;
}
if (Key.isDown(Key.DOWN) and Key.isDown(Key.LEFT)) {
this._y += a;
this._x -= a;
}
if (Key.isDown(Key.UP)) {
this._y -= b;
}
if (Key.isDown(Key.DOWN)) {
this._y += b;
}
if (Key.isDown(Key.LEFT)) {
this._x -= b;
}
if (Key.isDown(Key.RIGHT)) {
this._x += b;
}
};
puedes mover el mc con las flechas
saludos
zulo