He creado dos clases nuevas, separadas en dos archivos.
1er. archivo
class Animal extends MovieClip{
private var speed:Number;
function Animal(){
this.speed = 5;
}
};
function run(){
this.onEnterFrame = function(){
this._x +=this.speed
};
}
function stop(){
delete this.onEnterFrame;
}
2º archivo
class Cat extends Animal{
private var speed:Number;
private var catSound:Sound;
function Cat(){
this.speed = 1;
};
function meow(){
catSound = new Sound(this);
catSound.attachSound("Meow");
catSound.start();
};
}
El problema que tengo es que cuando abro el archivo que las va a utilizar, me sale un error que me dice que no las encuentra.
¿en qué me equivoqué?
Gracias.