I want reader to open in same web browser

I recently updated my adobe reader and now when I click on a pdf link in a webpage, it starts adobe and opens the document in a new window when it used to just show it in the same window. How can I switch it back? I have Adobe Reader 8.1.2 and I am using Windows XP Pro with IE version 7.
Thanks.

Yes, it briefly shows a download screen and then opens the adobe program and uses that to show the document. Before it would open the pdf file in my browser and I could see the address bar.

Similar Messages

  • Problems with multiple Domains open in same web browser?

    Here is the problem.
    I login to one domain and then open a new webpage (same browser) and login
    to a 2nd domain. I can then navigate in both domains in each web page.
    However, when I logout of one, it logs me out of both and which ever one
    that I logged out of is the logout/login page that I see for both web pages.
    The same thing happens if I try to login to 2 different domains at the same
    time. One will override the other and I end up with the same domain open in
    both browsers.
    I am pretty sure that this has to do with the cookie, since it is probably
    using the same one for both and then getting confused. Does anyone know how
    to fix this?
    Portal Server: IPS 3.0 SP2
    Web Server: IWS 4.1 SP8

    Brian Orwig wrote:
    Here is the problem.
    I login to one domain and then open a new webpage (same browser) and login
    to a 2nd domain. I can then navigate in both domains in each web page.
    However, when I logout of one, it logs me out of both and which ever one
    that I logged out of is the logout/login page that I see for both web pages.
    The same thing happens if I try to login to 2 different domains at the same
    time. One will override the other and I end up with the same domain open in
    both browsers.
    I am pretty sure that this has to do with the cookie, since it is probably
    using the same one for both and then getting confused. Does anyone know how
    to fix this?The way the cookies are set for the current authentication are it is based on
    the portal domain/dns domains and the client ipaddress.
    When a user logs in a random session id is generated, and then once he
    authenticates the session id is made valid and is added into the session hash
    table.
    So to answer your question you can do what your trying to do if you are using
    two browsers but in the current architecture and the way sessions are handled it
    is not possible if your using just one browser ..
    iWS Sp8 is not certified to run with portal and the web server that is shipped
    with should not be updated seperately, in the past doing that has broken portal
    >
    >
    Portal Server: IPS 3.0 SP2
    Web Server: IWS 4.1 SP8

  • One or more PDF documents are open inside a web browser - message

    Hi,
    I have a new L series notebook and its great. The only foible I can think of is a message I keep getting when I try to shutdown. There is a message box that says "One or more PDF documents are open inside a web browser. If you exit adobe reader now, those documents will be closed. Are you sure you want to exit?".
    The thing is I do not have any PDF's or web browsers open at the time! Can you help me please?
    Thanks, Mark.

    Hi Mark
    Believe me its nothing serious the same happens on my notebook from time to time
    Usually the PDF files can be read with the Adobe Acrobat reader. This application service runs in the OS background and this message can appears if the Adobe Acrobat reader cannot close the background process automatically
    I have solved this tiny problem by removing the acrobat reader from the system. After new reboot I have reinstalled it again
    Now the message does not appear and all runs like a dream ;)

  • My course designed in Captivate 5 will not open in the web browser when published or in preview mode

    Does anyone know why my course will not open in a web browser. It's a pretty standards course. It's 800 X 600 with 73 slides that are all about 10 seconds long. It does have a few videos incorporated, but I removed them and published and I still got nothing in a web browser. Any ideas?

    I'm afraid you haven't given us enough information to know how to help you.
    More details please. 
    Screenshots of what you see perhaps?
    Do you have the same issue with a new blank project uploaded to the same publish folder with the same browser?

  • Cannot use Adobe Reader to view PDF in web browser error

    I have a new computer and have Acrobat Pro installed.  When I try to click on PDF links in browsers, I get an error:
    Cannot use Adobe Reader to view PDF in web browser.
    I want to be able to open these links using Acrobat Pro.  What can I do in Internet Explorer so I don't always receive these errors, and so pdfs automatically open using Acrobat Pro?
    Steve

    Because it was not designed for Windows 7 doesn't mean it cant run.
    If you install the applications as administrator, you shouldn't have problems. I have installed both Reader and Pro versions on Windows 7 32 and 64 bit without problems, as long as I did it as administrator. You right click on the setup and select Run as Administrator. You don't need to do it for updates if you go through the update option on the help panel.

  • Open URL in Web Browser from a Java Application

    Hi,
    I have an HTML document that I want to load in a browser window by clicking on a button in my java GUI application.
    Any suggestions?
    Thanks.

    You can use the Process class to start the web browser with the proper command line arguments (depends on the web browser though). Or on windows, you can have your program create a batch file with the code start url (where [url] is your url), and this will open the default web browser when run (again you must run it with a Process).

  • Openning a native web browser on Air desktop app

    I have developed an desktop air app with aptana studio.
    i want to attach a google adsense banner into my air app.
    but i got a problem that air app doesn't open a native webrowser.
    How can app open a native web browser when click in iframe?

    The iframe seems to load code from a remote location, and thus this code will be in a remote sandbox, not in the application sandbox, for obvious security reasons. This means that the code inside the iframe will net be able to use the air APIs.
    If you can control the content from the remote location, you can use the parent sandbox bridge (http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7f08. html#WS5b3ccc516d4fbf351e63e3d118666ade46-7edd) to make a call from inside the iframe to the main application to open the browser window.
    Otherwise, I don't think there's a way for content loaded from a remote location to open native browser windows (this would be a security issue).

  • Opening PDF in Web Browser(IE)

    Hi,
    I have written a program to download PDF file. When user will click on "Download" link, PDF file should open in web browser IE itself. Currently file is opening in separate window. I am creating this PDF file run time and it is not stored in harddisk. In Acrobar Reader, I have checked the check box "Display PDF in browser". Despite this it is opening in separate window.
    I have written following code:
    byte abyte0[] = pdfGenerator.generatePDF(getXslFile(instancedata), new String(instancedata.requestResult.message, "UTF-8"));
    httpservletresponse.setHeader("Cache-Control", "no-cache");
    httpservletresponse.setHeader("Cache-Control", "max-age=0");
    httpservletresponse.setHeader("Content-Disposition", "inline; filename=" + instancedata.userId + "_" + System.currentTimeMillis() + ".pdf");
    httpservletresponse.setContentType("application/pdf");
    String s = new String(abyte0, "UTF-8");
    servletoutputstream = httpservletresponse.getOutputStream();
    servletoutputstream.write(abyte0, 0, abyte0.length);
    servletoutputstream.flush();
    Kindly suggest what is required to open PDF in Web browser (IE).
    Regards,
    Dev

    I don't see anything wrong here offhand.
    In your download link, you aren't using target="new" or anything, are you?

  • Loading a website without opening a new web-browser

    Can someone tell me how to load a webpage without opening a new web-browser, having it displayed on the current one...
    I have tried the following code but it opens up a new browser instead... :
    getAppletContext().showDocument(new URL("http://www.angelfire.com"), "_blank");
    Million thanks

    getAppletContext().showDocument(new URL("http://www.angelfire.com"), "_self");

  • "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint 2010 and Publishing Approval workflow.

    I am trying to add a new workflow to a document library with the below mentioned settings and getting error saying "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint
    2010 and  Publishing Approval workflow" . For your information the I have checked the server default option to open in browser.
    Versioning Settings.
    Error
    This is quiet urgent issue . Any help would be really helpful.. Thanks.. 

    Hi Marlene,
    Thank you very much for your suggestions.
    But I am not creating a custom workflow in designer as Laura has mentioned. I am instead trying to create a new Out of the box Approval Workflow and I get the error mentioned above.
    As it works in other environment, I tried figuring out the possible differences which can lead to this error.
    Today I found one difference which is there are no form Templates within Infopath Configurations in Central Admin. Now I am trying to figure out what makes this form templates to be added to the template gallery.
    Regards,
    Vineeth

  • Opening OEM for two Oracle 11gR2 Databases in the same web browser automatically log out.

    Hi to everyone,
    I have an issue regarding Oracle Enterprise Manager in 11gR2. I have two database (SWPROD, PDPROD) in a single server. When I open the OEM URL for  SWPROD it is successfully logged on but when I open the OEM URL for PDPROD and successfully logged on the other tab for SWPROD will automatically logged out. And when I switch to the other tab for PDPROD it is also automatically logged out. Both OEM URL is open in a single web browser like Mozilla Firefox. What would be the reason why both OEM URL will be logged out when I open them at the same time?
    Thank you for your incoming response.

    Well it seems the only way to clear these out of EM was to shut BOTH RAC nodes down and power them up one at a time.  Now the updates aren't shown as required and my compliance score is where it should be.
    Is this a bug ?  Seems pretty stupid to have to shut down both RAC nodes to fix this.  Powering a single RAC node off and back on did not clear this.
    Unless i'm missing something??

  • Want CSH to open in same browser window

    I am implementing a Help system for a Java app.
    The developers did a test and things seem to launch ok, except that each time they hit F1 in a window the topic opens in a new browser window.
    Can I set something in my project os that they open in the same window ? I am currently generating WebHelp output.
    Thanks

    Pretty sure the cause will be down to something on the developer's side. There is nothing you can do to affect that behaviour.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Cannot open .jnlp file when asked to open with firefox web browser in ubuntu 11.10 using firefox 6

    After upgrading to ubuntu 11.10 the firefox 6 browser cannot download and open .jnlp file from the interactivebrokers website. Usually I go to the IB website and download tws.jnlp file which is opened in the firefox web browser. But now when I click on the Open with Firefox Browser button, the firefox browser opens a new tab and display the same open window again.

    Seems that after upgrading to 11.10, jnlp files open with firefox instead of javaws (Java Web Start).
    If you right click the file on the download folder and choose "open with" you can manually select java web start.
    Ubuntu bug...
    You can right click any .jnlp file and select "properties", go to "Open With" tab, mark Sun Java 6 Web Start and click "Set as Default". Should fix it. I don't know what would happen if you have the default ubuntu java instead of Sun's. Maybe this wouldn't be necessary.

  • Photos keep opening up in web browser

    photos keep opening up in web browser

    I'm going to make a wild guess as to what you mean.
    Hold down the control key and select a file of the given type in the Finder. A contextual menu appears. Release the  control key and hold down the option key. From the contextual menu, select the submenu
              Always Open With
    and then the application you want to open all files of that type.

  • Cannot open portal in web browser

    Dear experts,
    i cannot open my BW portal domain:50100/irj/portal. i have applied the port on the configtool configuration, and i have tried to telnet with the port 50100 the status is connected. but when i put the url in web browser, it cannot load the web page. it should be ok, because the java service is up and green.
    Please expert, kindly to help.
    Thanks and regards,
    dinie.

    i tried to execute as suggestion to use jcmon. here's the result:
    SAP System Name   : PBJ
    SAP System        : 01
    MS Host           : prodbwbo
    MS Port           : 3902
    Process Count     : 3
    PID of JControl   : 9092
    State of JControl : All processes running
    State inside MS   : All processes running
    Admin URL         :
    Idx
    Name
    PID
    State
    Error
    Restart
    0
    dispatcher
    2236
    Running
    0
    yes
    1
    server0
    7288
    Running
    0
    yes
    2
    SDM
    10232
    Running
    0
    yes
    ============================================================
    JControl Monitor Program - Administration Menu  (Local)
    Instance : JC_prodbwbo_PBJ_01
    this is not my first time login to this server portal. but seldom i open n maintain portal, when i want to develop that portal i just cannot open the main portal. so what should i do? please help.
    thanks and Regards,
    dinie.

Maybe you are looking for