AC3 "The base specified is a native class..."??
Hello, I'm having a problem with linking one of my symbols to my document class. I went under Properties in my symbol drop-down list and put the correct base class in their (flash.display.MovieClip), however it keeps giving me this error when I click to see if it goes through: The base specified is a native class and will be defined in the player at runtime. It cannot be edited". When I went back to check my code, it had the correct "public class DocumentClass extends MovieClip" under "import flash.display.MovieClip". What am I doing wrong? I'm pretty new to Flash and AC3..
package
{
import flash.display.MovieClip;
public class DocumentClass extends MovieClip
{
public var playScreen:AvoiderGame;
public function DocumentClass()
{
playScreen = new AvoiderGame();
addChild( playScreen );
}
}
}
