Definition for the document class could not be found in the classpath, so one will automaticly be generated in the SWF file upon export.
This happens when I try and assign my Script to the animation Using what the tutorial told me.It's a bit of an annoyance.
Heres the Script.
package {
import flash.display.*;
import flash.text.*;
public class HelloWorld3 extends MovieClip {
public function HelloWorld3() {
var myText:TextField = new TextField();
myText.text = "Hello World!";
addChild(myText);
}
}
}
Thank you.