I have symbols in my library that are set to export for actionscript, but I UNCHECKED the “export in first frame” option.
In AS 3 I understand that the way one “loads” a library symbol at runtime is with
var myObj = new mySymbolClass()
But this method fails when my symbols do not export in the first frame. Why?
I get an error saying that mySymbolClass doesn’t exist - this would imply that if you want the class to be availabe that it must load in the first frame…but if this is true then why do they give you the option to export for actionscript while NOT loading it in the first frame?
Also, in my publish settings I have all classes set to load in frame two…so again, why can I not create a new object based on a library symbol which exports for actionscript if it does not load in the first frame? Thanks.