rldjrsksl / flex-iframe

Automatically exported from code.google.com/p/flex-iframe
0 stars 0 forks source link

IFrame not working with PDFComplete #98

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

1.Uninstall Acrobat reader
2.Install PDF Complete.
3.Display a PDF document in IFrame

What is the expected output? What do you see instead?
The document is supposed to display in IFrame
But Iframe is blank and the document PDF document is displayed in PDF Complete 
viewer. If acrobat reader is used instead of PDF complete this problem is not 
there.

What version of Flex-IFrame are you using? On what operating system and
which navigator (specify the version too)?

Safari and moxilla

Did you follow the users guide ? Particularly, did you set "wmode" to
"opaque" ?
yes

Please provide any additional information below, and a sample Flex 3
project reproducing the issue if possible.

var child:IFrame = new IFrame();
                        child = new IFrame();
                        child.percentWidth = 100;
                        child.percentHeight = 100;
                        child.source = stringURL;
                        ///vts/Reports/GeofenceSpeedViolationReport1302953616148.pdf
                        //child.source = "http://adobeindia.com/ado/index.html";
                        child.source="/vts/Reports/GeofenceSpeedViolationReport1302953616148.pdf";
                        child.visible=true;
                        child.enabled=true;
                        child.id="idIFrame";
                        titleWindow= new TitleWindow();
                        titleWindow.title=reportGrid.selectedItem.label;
                        titleWindow.addChild(child);
                        titleWindow.showCloseButton = true;
                        titleWindow.width = 990;
                        titleWindow.height =can1.height;
                        titleWindow.addEventListener(CloseEvent.CLOSE, titleWindow_close);
                        PopUpManager.addPopUp(titleWindow, this, true);
                        PopUpManager.centerPopUp(titleWindow);

Looking forward for your reply

Original issue reported on code.google.com by ajaianto...@gmail.com on 16 Apr 2011 at 12:01