Ну ладно в общем вот код, который я сохраняю в отдельном файле Plane.as

Код:
function Plane(speed, live, sost, speedRotation, keyRight, keyLeft, keyFire) {
this.speed = speed;
this.live = live;
this.sost = sost;
this.speedRotation = speedRotation;
this.keyRight = keyRight;
this.keyLeft = keyLeft;
this.keyFire = keyFire;
}
Plane.prototype = new MovieClip();
Plane.prototype.go = function() {
this.onEnterFrame = this.pov;
};
Plane.prototype.pov = function() {
trace("1");
}
Затем в библиотеке ставлю мувику lincage -> Class "Plane", вытаскиваю на сцену экземпляр, даю ему имя "plane_mc". В первом кадре пишу код

Код:
#include "Plane.as"
plane_mc.go();
Нажимаю ctrl+enter выводит 6 одинаковых ошибок "ActionScript 2.0 class scripts may only define class or interface constructs" и соответственно ничего не происходит. Видимо я как то не правильно оформляю описание класса, подскажите плиз.