Hello, I have a windows application called Anita (terminal emulation sofware from www.april.se) that runs just fine on Linux with WINE. The problem is that Anita needs to open an HTML page and display a PDF file. It works on Windows - terminal emulation software displays the PDF file without any problems but it doesn't work on linux. It displays a blank page. My guess is because on Windows Anita is using MS Internet explorer to display the PDF, while under linux the same call "iexplore test.html" will invoike Gecko. Can I install MS internet explorer AND replace Gecko with MS internet explorer, so when I type "wine iexplore" MS internet explorer is launched, not Gecko? Thank you for your help in advance!!!
person7 wrote:> while under linux the same call "iexplore test.html" will invoike Gecko.That's correct that is what Wine uses for HTML rendering. person7 wrote:> Can I install MS internet explorer AND replace Gecko with MS internet explorer, so when I type "wine iexplore" MS internet explorer is launched, not Gecko?Even native IE can not display PDFs no matter how hard you try. You'll need something else, like AcrobatReader.
person7 wrote:> Hello, > I have a windows application called Anita (terminal emulation sofware from www.april.se) that runs just fine on Linux with WINE. > The problem is that Anita needs to open an HTML page and display a PDF file. >Internet Explorer does not and never will display PDFs. It is an Adobe plugin that performs this function. I don't know if this capability is built into the HTML rendering engine for Wine.> It works on Windows - terminal emulation software displays the PDF file without any problems but it doesn't work on linux. It displays a blank page. >And this will continue to happen until you install the Linux version of Adobe Acrobat plugin for Firefox. You don't need Wine to do what you are attempting to do. Firefox does this very well. Installing Internet Explorer under Linux is a tedious task made easier by the ies4linux project. Google them and follow the instructions. BTW, if she is using a Mac, the last version of supported IE is 5.2. Firefox, again, is your friend and runs on both Intel and PowerPC Macs. James McKenzie
Hello Vitamine, Thank you for your reply! Yes, I was not precise in my previous post. I had to mention that the PDF is displayed by AdobeAcrobat, which is called by a Java Script code from inside the HTML page. The HTML page is handled by MS Internet Explorer. I do not know how exactly Anita does this, but when anita is invoked with the following parameter: "\\computername\folder\test.html?file='/myfolder/myfile.pdf'" it will display the PDF file. Thank you for your help!