Brief: I execute a method in a .fla file which works fine if the package invoked is in the same folder or below, but it does not work when I declare the class path in Publish Settings even though Flash apparently imports the class without error.
-
When I declare the class path in the Publish Settings dialog, I figure it’s correct because “import MyClass;” executes without error. That is, if I enter the wrong path or use the wrong class name, I get an error. So doesn’t this mean the class path is correct?
-
BUT, executing “var mc:MyClass=new MyClass()” throws “Type not found…” and “undefined … method” errors. But again, the same statement (copy & paste) works fine if the class is at or below the level of the .fla file (no class path declaration in Settings)…
If the class imports without error, doesn’t that mean it’s been found? And if it’s found, then why the “not found” error when creating the new instance?
I’ve looked for hours for a discussion of this combination without success. Any help will be greatly appreciated.
Thanks!