InlineGraphicElement READY event
The READY event fires before the loaded has been scaled to the InlineGraphicElement's dimensions.
I see the content (a swf) briefly at its original size before it automatically gets sized to the correct dimensions.
I never receive a SIZE_PENDING event.
I would like to be ale to listen to the actual LoaderInfo and listen for the INIT event.
In the code for the InlineGraphicElement it just listens for COMPLETE: loaderInfo.addEventListener(Event.COMPLETE,loadCompleteHandler,false,0,true);
I think it should either expose the loaderInfo or rebroadcast the INIT event.
I have resorted to setting the InlineGraphicElemen.graphic.visible to false on READY and then adding an ENTERFRAME listener and switching it to visible after a frame - this is not a good or reliable solution.
If anyone has any ideas - I'd love to hear them - perhaps I am missing something?
