Hi,
I have a 3 movieClips, each with the same base class, I would like to set up basic positioning up when instantiating the clips:
var Mc1:MovieClip1 = new MovieClip1(x, y);
My base class has a default constructor such as this:
package classes {
import flash.display.MovieClip;
public class baseClass extends MovieClip {
public function baseClass (x:int, y:int){
//Do positioning stuff here
}
}
}
The problem is that I get 1203 errors about an incorrect number of arguments. Is it correct that base classes cannot have any arguments on their default constructors and is there any way around this?
Many thanks!