I am writing something in Flash/ AS3, and I came across this problem:
ReferenceError: Error #1056: Cannot create property txtInput on package.name.DocumentClasss
Basically I have a document class, and I can create instances of movieclips clips and compile without issues. But when I put a input text field ("T" icon in the palette) on the stage, and it refuses to compile, with the above error.
I am not sure if this makes a difference, but I am writing my ActionScript in FlashDevelop, with compilation done in the Flash IDE. I also have both Strict Mode
and Warnings Mode
selected under Publish Settings -> Flash -> Script -> Settings... -> Errors
.
I have searched for solutions to this online, and the only suggestions out there seem to be to not insert the text field on the stag in Flash IDE, and instead dynamically create them in the document class.
Is there a better solution?
Thanks