Certo.
E' la prima cosa che mi è venuta in mente.
Pensando che il sgreto potesse essere nell'html (improbabile, ma le ho tentate tutte) ho anche provato ad analizzare l'html di pagine qui e là su iternet. Risultato: le altre funzionano; la mia NO.

Questo è il codice completo associato al clip
(l'swf funziona senza problemi):
//Ti ringrazio per la tua disponibilità


onClipEvent (load) {
Mouse.hide ();
}
onClipEvent (load) {
thrust = 1;
decay = .97;
maxSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
_rotation += 10;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 10;
}
if (Key.isDown(Key.ENTER)) {
xSpeed += thrust*Math.sin(_rotation*(Math.PI/180));
ySpeed += thrust*Math.cos(_rotation*(Math.PI/180));
flames._visible = 1;
} else {
xSpeed *= decay;
ySpeed *= decay;
flames._visible = 0;
}
speed = Math.sqrt((xSpeed*xSpeed)+(ySpeed*ySpeed));
if (speed>maxSpeed) {
xSpeed *= maxSpeed/speed;
ySpeed *= maxSpeed/speed;
}
_y -= ySpeed;
_x += xSpeed;
//
off-screen
if (_y<0) {
_y = 450;
}
if (_y>450) {
_y = 0;
}
if (_x<0) {
_x = 750;
}
if (_x>750) {
_x = 0;
}
}