got it!  dropshadowfilters (maybe filters in general), kill the pdf.

any idea why?

--- In [email protected], "tchredeemed" <[EMAIL PROTECTED]> wrote:
>
> another update, its not the popupmanager, its when I add children to
> the parent application as well.
> 
> If the code that adds the envelope is in the parent application, and I
> dont have to add any children, it works, other than that, death.
> 
> 
> --- In [email protected], "tchredeemed" <apthorp@> wrote:
> >
> > Ok, working with AIR (newest release) in flex builder (newest
release). 
> > 
> > Just downloaded adobe reader (newest release, see a trend? =])
> > 
> > I have a popup, that im using with the popupmanager, that loads a pdf:
> > 
> > private function loadEnvelope():void {
> > if( HTMLLoader.pdfCapability == HTMLPDFCapability.STATUS_OK ){
> > var htmlLoader:HTMLLoader = new HTMLLoader();
> > var url:URLRequest = new URLRequest("hardcodeurl");
> > htmlLoader.width = 519;
> > htmlLoader.height = 361;
> > htmlLoader.load(url);
> > htmlLoader.addEventListener(Event.COMPLETE,completeHandler);                
> >                         
> > var holder:UIComponent = new UIComponent();
> > holder.addChild(htmlLoader);                                                
> >                                 
> > envelope.addChild(holder);
> > }
> > }
> > 
> > the completeHandler fires, so it says it is completing.
> > 
> > my problem is this, it is just showing a black/gray square, instead of
> > showing the pdf.
> > 
> > I know the pdf exists, because I can manually go to that url, and it
> > prompts me to dl the pdf.
> > 
> > Keep in mind, that will be a dynamic url when I get this working! :)
> > 
> > HALP! :)
> >
>


Reply via email to