Printing pdf without opening new browser window

Hi,
How can i print (locally) multiple pdf generated on the server without having to open acrobat in the browser ?

Same here.
Worked fine under IE5.x to IE6, JRE 1.3.x to 1.4. OS used were W2k and WinXP, no prob here.
Now on some PCs the windows don't pop up anymore. No exception, no indicator of what's going wrong.
Any hints?
J�rgen

Similar Messages

  • Any way to open new browser window without using image maps?

    Is there any way to open new browser window without using image maps? My code works fine in Firefox, but not in IE. There are 2 problems in IE: 1st is that the thumbnail images move up within their own borders & 2nd that when you click on an image it does open up a new browser window, but also redirects to the index page (in this case it's just a placeholder index page - the new one I've called index_new.html for the time being).
    Here is the link:
    http://www.susieharperdesigns.com/gallery_beads.html
    Any help is greatly appreciated.

    Your missing a value on the HREF.  In your code you have this:
    <area shape="rect" coords="-24,-9,106,144" href=" " onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    and it should be this:
    <area shape="rect" coords="-24,-9,106,144" href="javascript:void()" onclick="MM_openBrWindow('gallery_bead1.html','','width=255,height=360')" />
    </map></div>
    If you fix the code on all your beads, it should work.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • PDF viewer into new browser window

    Hello,
    I use following code to open new browser window with PDF file. The URL passed to the method is link to SICF service which returns the PDF in the request with content-type = 'application/pdf'. New window is open with correct URL, but the content is not displayed - Refresh or Go button has to be pressed to display it. Don't you experience similar problem? Is this WD error or some IE security setting?
    Thank you and best regards,
    Ludek
      lr_window = lr_w_manager->create_external_window(
          url = ld_url
          title = ''
          modal = abap_false
          has_menubar = abap_true
          is_resizable = abap_true
          has_scrollbars = abap_true
          has_statusbar = abap_true
          has_toolbar = abap_true ).
      lr_window->open( ).

    Hi Ludek,
    Probably a compression problem. Have you turned off gzip compression for the pdf?
    Btw, an alternate solution without having a separate handler is to use the cl_wd_runtime_services=>attach_file_to_response() method.
    Best regards,
    Thomas

  • Opening new browser window

    Hi,
    this piece of code use to work for opening a new browser, but now it has problem in opening browser window. There is no exception thrown, can anyone has suggestion whats wrong in this. I am using JRE1.3. I have a feeling that something is conflicting with IE (I tried on 5.0,5.5,6.0)
    thanks
    Syed
    try
    URL url = new URL(urlString);
    applet.getAppletContext().showDocument(url, "_blank");
    } // End of Try
    catch(MalformedURLException e)
    logs("Exception in opening new browser window: " + e);
    } // End of Catch

    Same here.
    Worked fine under IE5.x to IE6, JRE 1.3.x to 1.4. OS used were W2k and WinXP, no prob here.
    Now on some PCs the windows don't pop up anymore. No exception, no indicator of what's going wrong.
    Any hints?
    J�rgen

  • Open PDF link in new browser window?

    I'm viewing a newly created PDF in a browser.
    When clicking an internal link, the linked PDF loads into the same window
    I need it to launch in a new browser window.
    I have set the link to "launch new window" in Word where this file originated.
    I have also opened and resaved it in Acrobat 10 with preference "Open cross-document links in same window" deselected.
    Neither of these setting have change the behavior though all documentation I read seems to suggest they should.
    What am I missing here??
    -Blake

    That preference setting does not apply to web links and do not refer to a browser window, but an Acrobat window.
    There is a JavaScript method that might work. Try setting the link action to something like the following script:
    app.launchURL("http://www.example.com/", true);
    This was taken from the example here: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.150.html
    The problem is if a user has Reader 10 and protected mode is enabled (as it is by default), it doesn't work and opens the link in the same browser window.

  • Opening links on a pdf in a new browser window in IE

    I am trying to get the links embedded in a pdf to open in a new browser window. I applied the follow javascript to the link's action:
    app.launchURL("myUrl", true);
    This works in Firefox, a new browser window opens, but not in Internet Explorer. In IE, it still replaces the pdf with the page being linked to. Has anyone come up against this? Thanks.

    thanks for the quick feedback-
    no, because my customer is using the IE 6. According to the system
    requirements all these Acrobat/Reader versions should also run
    properly under IE 6 http://www.adobe.com/support/downloads/detail.jsp?ftpID=3796
    I have a look in IE >> manage- add-ons and got the following Add-ons
    for adobe
    - Adobe PDF
    - Adobe PDF Conversion Tool helper
    both are enabled!
    Do I need more?
    can u pls check, if u have the following ddl's in the adobe home dir:
    Acropdf.dll, Acroiehelper.dll,Gbdetect.dll and Pdfshell.dll
    Thanks
    Caleb

  • Open new browser window from Hyperlink in BIP PDF output report?

    Hello,
    Is there a way to open a new browser window from Hyperlink in PDF report?
    Thank you all in advance.
    MT

    Dear Friend,
    It is not supported for PDF Report. But below links helps you, to accombish this task in PDF report.
    [url http://oracleapps4u.blogspot.com/2011/03/open-hyperlink-in-new-browser-window.html]http://oracleapps4u.blogspot.com/2011/03/open-hyperlink-in-new-browser-window.html
    Thanks & Regards
    Ahamed Rafeeque Cherkala

  • Open new browser window without bookmark

    when i open a new browser window (from a bookmark or using cnt N) it opens with the list of my bookmarks along the left side of the screen forcing me to x out of the bookmark list so i can have a full browser window page.
    how can i get new pages to open without the list of bookmarks on the left side of the screen?
    thanks,
    todd

    You can create a javascript to window.open having toobar, menubar or statusbar=0. The page content can be customized per need. Call this javascript from a link or button click using javascript:popup_window();
    For example,
    <script language="JavaScript" type="text/javascript">
    function popup_window()
    w = window.open("", "Window", "width=320,height=400,status=0,toolbar=0,menubar=0");
    w.document.write('<html><head><title>Help Window</title>');
    w.document.write('</head><body>');
    w.document.write('<div><font face="Arial" size="2">This is help page.');
    w.document.write('</font></div><p>');
    w.document.write('<div><font face="Arial" size="1"><a href="javascript:window.close();">Close This Window</a></font></div><p>');
    w.document.write('</body></html>');
    </script>Ittichai

  • Open new browser window without buttons, menus or URl-field

    Hi All
    How do you make an APEX-link open a new browser window with no toolbar?
    Brgds
    Helge

    You can create a javascript to window.open having toobar, menubar or statusbar=0. The page content can be customized per need. Call this javascript from a link or button click using javascript:popup_window();
    For example,
    <script language="JavaScript" type="text/javascript">
    function popup_window()
    w = window.open("", "Window", "width=320,height=400,status=0,toolbar=0,menubar=0");
    w.document.write('<html><head><title>Help Window</title>');
    w.document.write('</head><body>');
    w.document.write('<div><font face="Arial" size="2">This is help page.');
    w.document.write('</font></div><p>');
    w.document.write('<div><font face="Arial" size="1"><a href="javascript:window.close();">Close This Window</a></font></div><p>');
    w.document.write('</body></html>');
    </script>Ittichai

  • Cache problem for servlet opening new browser window

    Requirement:
    I have JSP page say summary.jsp with link "print account summary"
    When user clicks on this link, new browser open with PDF document of summary.jsp
    This new browser window should not have address bar and toolbar.
    Solution:
    Servlet called PrintSummary which sets contenttype=application/pdf and sends the data to outputstream.
    href of link is
    Java script function is:
    function openWindow(url){
    window.open(url,'blank','toolbar=no')
    Problem:
    Since the URL of this new window is
    http:// host:portnumber/PrintSummary
    Even if I click the "Print summary" link for account2,
    being the same URL (http:// host:portnumber/PrintSummary) it accesses the existing page in the cache which is created for account 1.
    In href if I just use servlet url as
    I get the expected behaviour but then I don't have control on browser appearance and browser window will be with address bar and toolbar.
    The only option I could think of was changing URL as follows:
    <% String url ="javascript:openWindow('PrintSummary? var1="+ Math.random()+"')";
    So that URL is different all the time
    Is there any way to solve this problem?
    Thanks in advance
    M.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • How to open new browser window on click of command button

    Hi,
    We have a requirement to open an image in new window when a command button is clicked. Is there any sample explaining how to do that?
    Thanks in Advance,
    Pradeep

    Hi,
    I have to load an applet viewer in the new browser window. I have URL to the PDF.
    I ma able to load the applet viewer in new browser window using javascript. But I have to load the new PDF if the same window in already opened.
    The issue here is , i am loosing the window handle if the parent page is refreshed. I want to store the window handle in session scope variable and use the same.
    How do i update the session scope variable using javascript?
    Thanks and Regards,
    Pradeep

  • Open New Browser Window in CS4 opens behind existing window - HELP!

    I am creating a website in CS4, and everything works fine EXCEPT ona few pages, for every link I have set up to open in a new browser window, the new window opens BEHIND the existing window, so that you cannot see it. I tried one solution that said to type "javascript:;" in the href (link) box, but that did not correct the problem. Any ideas?
    Thanks.

    Sounds like you have Tabbed browsing enabled.
    IE
    http://www.ie-vista.com/tabs.html
    Firefox
    http://www.mozilla.com/en-US/firefox/features/#tabs
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.com/blogspot.com

  • JavaScript to open new browser window

    I have an intranet page from which users can select various
    Captivate 2 movies. When they select the link I use a simple
    JavaScript function to open an appropriately sized window to run
    the movie in, as they are of various sizes and some so large I need
    to do away with toolbars and the like.
    To save the users having to return to the Intranet page to
    open another movie I want to offer them a button at the end of a
    movie which would have the same effect - open a new browser window
    appropriately sized for the particular movie they choose.
    This should be easy: create a button, choose Execute
    JavaScript and put the script in the box. Only it doesn't work.
    Scouring the forums I found a few potential answers, of which
    the most promising seemed to be to put the function in the
    standard.js file that Captivate 2 creates and then call the
    function from the Execute JavaScript dialogue. I also tried putting
    the function into the HTML that is created when the Captivate is
    published. Also didn't work.
    I've tried various permutations in the Execute JavaScript
    dialogue too. Do I or do I not need to preface the line with
    javascript: or javascript:function? I tried all options without
    success.
    It would help my nerves if every time I republish a new
    attempt it didn't overwrite standard.js!
    If I could solve this I could also probably solve my other
    requirement to close the browser window when the movie stops - I
    gave up on that last year as not being worth the effort.
    Any help will be very gratefully received.
    WizardOfWellingboro

    Hi again
    Loved your statement:
    The more one learns the more one discovers one doesn't know!
    A former co-worker once shared this with me. It was shared
    with him by a former college professor. It's quite amazing when you
    think about it. I refer to it as
    The Circle of Knowledge
    Draw a small circle on a piece of paper. Everything that fits
    inside the circle represents your total knowledge of any given
    field. The edge of the circle represents everything
    you are currently
    aware of that you
    don't know about it.
    Now let's assume you learn a vast amount about the subject.
    Just look at how large your circle has become! But look at the
    other effect. Look at how much more
    you are currently
    aware of that you
    don't know about it.
    If you would like to ship something my way, I'll be happy to
    see if it runs without issue on my PC or if I see what you are
    seeing. If not, that's cool too. Just thought I'd toss out the
    offer. rstone75 (at) kc (dot) rr (dot) com. Address intentionally
    altered in order to obfuscate scammers.
    Cheers... Rick

  • Opening New Browser window for click event on an image

    hi all,
    I want someone to help me out solving the problem of opening
    a new browser window on the mouse click event of an image or a
    button etc.... The new window would contain the datagrid details
    from the main window, but in an expanded form. If at all there is a
    solution, I even want to know whether there is anyway for sizing
    the poped up window,because I dont want the new poped up window to
    cover the entire screen.
    For getting better idea of my problem, the best example I
    could give is the popup window that appears when we click on the
    preview button while posting the message to the forum.
    Someone please do help me out in this regard.
    Thanks,
    amar.

    I'd definitely try to use a Flex popup... but the
    flash.net.navigateToURL method is a simple way to open a popup
    window in a new browser. You can pass any data needed by the new
    page using the URLRequest and/or URLVariables. The URL you navigate
    to could, of course, be another Flex application if necessary. I
    use this only when I need to open a popup window on another site,
    or an HTML formatter report or something similar.
    Concerning yourself with the size of the popup window may be
    a bad design choice also. I, for example, have my browser
    configured to open all popups in a new tab regardless of sizing
    constraints imposed by the designer. If it is absolutely necessary
    for you to have control over the size of your popup window, you
    should follow the advice given by others and use a Flex
    popup.

  • Open New Browser Window Behavior Issue

    I've got a site that has a list of names of deceased people.
    When a viewer clicks on a name I have a new browser window open
    that is a small memorial page specific for that person. This list
    is fairly long so the viewer has to scroll down a ways to get to
    the bottom. If the viewer clicks a name towards the bottom and then
    closes that new browser window they have to scroll all the way back
    down and find where they left off. This of course, is assuming they
    are going in order to view the memorial pages for each person. Is
    there a way to make the "original page (with the list of names)"
    not refresh to the top of the page? I'm using and would like to
    continue using tables and not layers or styles.
    Information can be sent onto [email protected]
    Any help would be much appreciated!
    Thanks,
    Cody

    Cody,
    It sounds like you are using <a href="#"
    Try using <a href="javascript:;"
    Or better yet, use David Powers' Smart Link:
    http://japan-interface.co.uk/webdesign/tools/index.html
    Ken Ford
    Adobe Community Expert - Dreamweaver
    Fordwebs, LLC
    http://www.fordwebs.com
    "csnodgr2" <[email protected]> wrote in
    message
    news:fmc4tf$feq$[email protected]..
    > I've got a site that has a list of names of deceased
    people. When a
    > viewer
    > clicks on a name I have a new browser window open that
    is a small memorial
    > page
    > specific for that person. This list is fairly long so
    the viewer has to
    > scroll
    > down a ways to get to the bottom. If the viewer clicks a
    name towards the
    > bottom and then closes that new browser window they have
    to scroll all the
    > way
    > back down and find where they left off. This of course,
    is assuming they
    > are
    > going in order to view the memorial pages for each
    person. Is there a way
    > to
    > make the "original page (with the list of names)" not
    refresh to the top
    > of the
    > page? I'm using and would like to continue using tables
    and not layers or
    > styles.
    >
    > Information can be sent onto [email protected]
    >
    > Any help would be much appreciated!
    >
    > Thanks,
    > Cody
    >

Maybe you are looking for

  • Make the Payment Terms field only editable by a user

    In the customization, itu2019s possible to make Payment Terms of a Purchase Order as display only field (Delivery/InvoiceTab - Header of a PO). This configuration applies for every user who creates or updates the purchase order. It is possible to mak

  • Adobe Muse CC 2014 Trial Error

    I have been having trouble getting adobe muse cc trial to work, some of you may have seen my other post, however since adobe came out with the update yesterday, i thought i would uninstall the other copy and try a trial of the 2014 update. However i

  • My wife's iphone 3gs gets stuck on boot logo screen sometimes with a loading circle.

    I have tried holding power and home buttons to restart.  Problem persists.  I have also updated software.  Problem persists. I have done a backup then a restore.  It worked normally for a few hours then the problem returned.  None of the youtube vide

  • Docuemnt uploading not opening in cv01n

    Dear all We want to upload a document in the SAP system by using portal We have created a Z RFC and in this rfc we are calling : SCMS_XSTRING_TO_BINARY  to convert to binary BAPI_DOCUMENT_CREATE2 : when debugging , the docuemtn number is generated CV

  • HT4539 how do i update to ios 4.3?

    How do I update to IOS 4.3?