Error #2099: The loading object is not sufficiently loaded to provide this information. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:20:09Z http://stackoverflow.com/feeds/question/340993 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340993/error-2099-the-loading-object-is-not-sufficiently-loaded-to-provide-this-inform 2 Error #2099: The loading object is not sufficiently loaded to provide this information. simspace 2008-12-04T15:31:23Z 2009-06-09T09:07:17Z <p>I have a Flash app made up of AS3 components that I am trying to run in Flex. </p> <p>In Flash, after the main component is added to the stage, the loader object (loaderInfo.loader) is null which is fine and I handle that.</p> <p>In Flex, on the applicationComplete event I add the the main component to the stage and the loader object's getter throws an exception - Error #2099: The loading object is not sufficiently loaded to provide this information.</p> <p>Also, the INIT event, which is dispatched when the properties and methods of a loaded SWF file are accessible, is not firing which is probably part of the problem. But I can't figure out why it is not being dispatched.</p> <p>Any ideas why the same code has two different results?</p> http://stackoverflow.com/questions/340993/error-2099-the-loading-object-is-not-sufficiently-loaded-to-provide-this-inform/348472#348472 0 Answer by aaaidan for Error #2099: The loading object is not sufficiently loaded to provide this information. aaaidan 2008-12-08T01:22:41Z 2008-12-08T01:22:41Z <p>Mmm, that seems like a frustrating problem. When you say "main component", I presume you mean the document class in Flash?</p> <p>I'm not sufficiently knowledgeable about flex to comment on the problem you described, but I can suggest that you try using <code>ADDED_TO_STAGE</code> instead of <code>INIT</code> as your event...</p> <pre><code>public class MainFlashClass extends Sprite { public function MainFlashClass() { addEventListener(Event.ADDED_TO_STAGE, onInit); } public function onInit(e:Event):void { removeEventListener(Event.ADDED_TO_STAGE, onInit); // do your initialisation code here } } </code></pre> <p>This might work for both scenarios. I've found <code>ADDED_TO_STAGE</code> to be more helpful because it always gets fired, whether the class is already loaded when the swf is executed (like the document class), or if it's being loaded with a <code>Loader</code>.</p> http://stackoverflow.com/questions/340993/error-2099-the-loading-object-is-not-sufficiently-loaded-to-provide-this-inform/360987#360987 -1 Answer by simspace for Error #2099: The loading object is not sufficiently loaded to provide this information. simspace 2008-12-11T21:21:07Z 2008-12-11T21:21:07Z <p>I do process the ADDED_TO_STAGE event. That gets things going. </p> <p>But the INIT event is different. That tells your code that all the properties of the loader object (loaderInfo.loader) are now initialized. This event is supposed to is fire sometime after the ADDED_TO_STAGE event, but it never fires.</p> <p>When my code tries to access a property of the loader object, an exception is thrown. </p> <p>There is something about the Flex start up sequence that is slightly different than Flash.</p> http://stackoverflow.com/questions/340993/error-2099-the-loading-object-is-not-sufficiently-loaded-to-provide-this-inform/361094#361094 0 Answer by vanhornRF for Error #2099: The loading object is not sufficiently loaded to provide this information. vanhornRF 2008-12-11T21:45:16Z 2008-12-11T21:45:16Z <p>I'm not sure if this is what's going on with INIT event, but I do know that in flash player 9, which I'm assuming is the version of your SWF? There's a bug with referencing the loader through its own evt target. Basically if you are loading something and you try and access properties of the loader though evt.target.loaderInfo.loader it never can find itself and throws the error you described in your question. I believe it's a known bug for flash player 9 that was fixed with the release of CS4 and flash player 10.</p> <p>Here's a link to a thread describing some of the problem, hopefully it helps</p> <p><a href="http://www.actionscript.org/forums/showthread.php3?t=137599" rel="nofollow">http://www.actionscript.org/forums/showthread.php3?t=137599</a></p> http://stackoverflow.com/questions/340993/error-2099-the-loading-object-is-not-sufficiently-loaded-to-provide-this-inform/364108#364108 -1 Answer by simspace for Error #2099: The loading object is not sufficiently loaded to provide this information. simspace 2008-12-12T20:54:21Z 2008-12-12T20:54:21Z <p>Hmmm... Interesting thought... I have Flash Player 10 installed. I wonder if it's a Flex 3 / Flash Player 10 compatibility issue? I'll look into this now. Thanks!</p> http://stackoverflow.com/questions/340993/error-2099-the-loading-object-is-not-sufficiently-loaded-to-provide-this-inform/968988#968988 0 Answer by johncblandii for Error #2099: The loading object is not sufficiently loaded to provide this information. johncblandii 2009-06-09T09:07:17Z 2009-06-09T09:07:17Z <p>You definitely need to post code so we an see better.</p> <p>With that said, after addChild are you attempting to grab the loaderInfo for the "main component" or for your mx:Application?</p> <p>Pseudo</p> <p>//onApplicationComplete event handler var myswf:SWFLoader = new SWFLoader(); myswf.load(...); addChild(nmyswf);</p> <p>trace(myswf.loaderInfo.loader); //end onApplicationComplete</p> <p>Is that what you're doing? If so, you need to add an event listener to your "main component" (assuming an externally loaded swf) to find out when Event.COMPLETE happens.</p> <p>var myswf:SWFLoader = new SWFLoader(); myswf.addEventListener(Event.COMPLETE, onMySWFComplete); //..rest of code</p> <p>Hope that helps. If not, post code.</p>