Open a pdf file directly on a certain page

Hi
I want to use a hyperlink in a other documenten to open a pdf-file on a centain page.
de first part is oke but I don't no the code for opening de right page
example:
C:\<name pfd-file>.pdf and then the code to open the page (for example page 15)
Is this possible?
I want to link to a big pfd-file and and for the use pleasant directly to the correct page
who can help me

Do you have a working link to a pdf file and a page number in excel?
see example it do not work
A link to a website with pdf-file works but not to a file in the computer.

Similar Messages

  • Open a PDF file in illustrator with multiple pages CS6

    Hi all,
    Maybe someone could tell me if this feature is already available...
    I really need to use this feature... maybe someone has a Idea? i need to translate and edit a PDF file that was original designed by our factory... they had hired a company to make the documentation but the company did go bankrupt so we can't get the original files en need the edit the compressed PDF File...
    I Hope someone could help me...
    Greetz
    Leroy

    hi,
    16 PDF Files with 4 pages Each..
    don’t know what kind of text it is…
    about image quality… if there is a method to editing of the PDF ..  then I could Replace the Images …
    Van: Monika Gause [email protected]
    Verzonden: woensdag 22 augustus 2012 13:31
    Aan: AcidusW01
    Onderwerp: Open a PDF file in illustrator with multiple pages CS6
    Re: Open a PDF file in illustrator with multiple pages CS6
    created by Monika Gause <http://forums.adobe.com/people/Monika+Gause>  in Illustrator - View the full discussion <http://forums.adobe.com/message/4639138#4639138

  • Doesn't open the PDF file (i.e. articles, books pages). It appears a black page. Thanks for help

    Safari doesn't open the PDF file (articles, book page, etc). It appears a black page. Before that it was working perfectly. Thank for your help

    Try this ...
    Open a Finder window then from the menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/Internet Plug-Ins
    Click Go.
    If you see the:  AdobePDFViewer plugin (or anything Adobe related) in the Internet Plug-Ins folder, move it to the trash.
    Restart your Mac and try opening a PDF file.

  • When I open firefox, it opens a pdf file as well as home page - how do i stop this?

    Since upgrading to v5, when I open firefox, it opens a pdf file as well as my home page. I cannot see any setting or fields in "options" that can be causing this - how do i stop the pdf from opening?

    Why didn't you remove all three prefs.js files?
    You may have left one file prefs.js that is causing the problems.
    Create a new profile as a test to check if your current profile is causing the problems.<br />
    See Basic Troubleshooting: Make a new profile:
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    If that new profile works then you can transfer some files from the old profile to that new profile (be careful not to copy corrupted files)
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Reader X "opens" a pdf file online as a blank page. Why? Using vista.

    While opening a routine bank statement (pdf) online today, I was prompted to delete Acrobat since it was no longer working, and to go to acrobat.com. I did so (I did not download any of the acrobat versions as a financial decision). At this point I was no longer able to open the pdf file. I updated Adobe Reader to Reader X. Still no luck. I tried the repair feature. No luck. I deleted Reader X and reinstalled it. No luck. The pdf still comes up as a blank page. I tried all but the most technical fixes on the Reader help and support site. No luck. I also deleted Acrobat Air and downloaded the latest version. I'm not a whiz at this, but it doesn't take a whiz to know Reader X ain't a-workin. Online tech support with Adobe couldn't solve the proplem. What kind of product is this Reader X? Help!!!

    Things are still not right online with Wells Fargo/Adobe pdf's. I have uninstalled all versions of Adobe Reader, AIR, and Flash Player, and have downloaded the new versions. I did the flash player a few minutes ago when trying to watch a YouTube video sent via email and I received a prompt telling me I needed to upgrade Adobe Flash Player.When I access the list of Bank statements for what I call my main account ( I have two checking, two savings, and one Visa accounts with this bank) the list of ten or so monthly accounts for this "main account" appears. I can click on any one of them, get a blank pdf, click on the refresh button, then the pdf appears; one of the savings accounts is on this same statement.  
    If I bring up the other checking account or the other savings account, the only entry on the monthly list that pertains to that account is the second one on the list. All the other months are still from the "main account". I can bring up any of those monthly pdf's via the refresh button route. 
    The Visa account monthly list is good, but I have to click on refresh to view the pdf.
    The pdf statements from US Bank work fine.

  • Open a pdf file with Acrobat Reader/Pro from a https site using ie

    Hi!
    I somehow don't manage to open a pdf file directly with Acrobat Reader/Pro when trying to open it from a https site and using ie8.
    With http sites everything works just fine.
    Are there any settings to enable this with https sites?
    Greetings
    Laura

    Reader is a different product
    http://forums.adobe.com/community/adobe_reader_forums

  • Opening a PDF File from WebDynpro

    Hello Everyone,
    I have a Webdynpro project and need to create a link on one of the views to display a .PDF document.
    1.  Where should I store the PDF document within the webdynpro project?
    2.  How do I open the PDF file?
    I've created a link with action on the view and just need to know how to open it.
    Thanks in advance for your help.
    Mike

    Hi Mike,
    You can try one of the following methods:
    Method 1:
    1. Create a context attribute (say pdfsource) of type binary.
    2. Create a file download control
    3. Attach this attribute to the data property of file download control.
    4. In the init method of the view or in some other method store the content of the pdf in the context attribute. And do the following code
         IWDAttributeInfo attInfo = wdContext.currentContextElement().node().getNodeInfo().getAttribute("pdfSource");
         ISimpleTypeModifiable type = attInfo.getModifiableSimpleType();
         IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType) type;
         binaryType.setFileName("Test.pdf");
         binaryType.setMimeType(WDWebResourceType.PDF);
    5. Now on click of File Download link, it will ask for "Open", "Save", or "Cancel" dialog box. You can choose open to open as a pdf document.
    Method 2:
    1. Write an action on click of the button or so.
    2. In that action get the contents and store it in an byte array and open the pdf file directly as follows.
         byte[] PDFbytes = <source string>.getBytes();
         if(PDFbytes!= null) {                                IWDCachedWebResource pdffile= WDWebResource.getPublicCachedWebResource(                    PDFbytes ,                                 WDWebResourceType.PDF,                            WDScopeType.CLIENTSESSION_SCOPE,               wdThis.wdGetAPI().getComponent().getDeployableObjectPart(),
                    "Some Title");                             wdComponentAPI.getWindowManager().createNonModalExternalWindow(pdffile.getURL(), "Some PDF").open();
    Thanks and regards
    RK

  • Problem to open with  PDF file  created in acrobat 5.0

    Hi,
    I always open my pdf files with acrobat 5.0, but now I made the instalation of Acrobat Reader 7.0 and now when I try to open the pdf files I only see blank pages.
    There is some option to fix this problem?
    Somebody could you help me?
    Regards
    Rodrigo

    Adobe Reader Lite version 1.5
    Basically is as useful as a chocolate teapot. NUL POINTS
    I bought PDF+ from www.mBrainSoftware.com fro my Nokia E61
    Brilliant
    It has opened a 22MB file which is the biggest PDF I have with graphics etc

  • Get "Access Denied" when click open a PDF file

    Hi Friends,
    Get "Access Denied" when click open a PDF file linked from SharePoint 2013 page.
    What are the route causes any one is remove the permissions are stopped the inheritance permissions of the library.
    Can anyone face the same issue please help me.
    Thanks,
    Tiru
    tirupal

    Hi,
    If you are able to open the same document earlier,then  anonymous access enabled on your doc library then.
    If you are facing this problem in first time,then you do not have required permission (may be custom permission level has been set ) on it.
    Murugesa Pandian.,MCTS|App.Development|Configure

  • I DL ver 9,10,11 of Free Adobe Reader - cannot open any PDF file.

    I get an error message "The instructions at xxxx referenced memory at xxxx. The memory could not be written." What is wrong?

    tI did as you instructed and got no good results. I even restored my Adobe files from several weeks ago from Carbonite and could not load Adobe REader nor open any PDF file that I was previously able to open.
    When I try to open a PDF file, I get a web page that has two panes. One pane on the left has a red box area with some options. The pane on the right is grey and has some options. The web page disappears after about 5 seconds so I can't read it all.
    I tried opening three files after reinstalling Adobe Reader and after restoring my Adobe files. One folder that I restored as "Cache" and had a file inside called "AcrobatFnt11 then another file called AdobeCMapFnt11 and the other file called AdobeSysFnt11.
    I'm extremely anxious to be able to open and load all my PDF files like I was able to for years before.
    Thank you.
    [spam links removed again!]

  • How can I make chromium to open PDF files directly in okular?

    Hi all,
    I switched from firefox to chromium and there is one thing that I would like to have solved: At the moment, the only way to open PDF files from the web is to first save them locally and open them afterwards from the chromium statusbar or from the chromium downloads tab (chrome://downloads/). Is there a way to configure chromium to open PDF files directly from a remote URL in okular?
    Thanks in advance & kind regards,
    jamesbond007.

    Yes, I would like to know that as well. Here it tries to open pdf files with the adobe plugin but fails (grey window). It's especially annoying with javascript links that do not allow to use "save as".
    David

  • I am having issues with opening pdf files directly from website on safari.

    i cant open any pdf files from safari. the page goes blank when the link is clicked.
    the same, however, can be easily viewed upon and saved on chrome or firefox.

    Back up all data.
    If Adobe Reader or Acrobat is installed, there should be a setting in its preferences such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected. Otherwise do as follows.
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present. The same goes for a plugin called "iGetter," and perhaps others.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Problem while opening a pdf file

    Hi,
    when i try to open a certain pdf file directly by clicking on the link, the reader hangs up.
    when i start the reader and try to open the file directly after that, the reader hangs up.
    But when i open the reader, let it run for a minute or two and open the file then, then it works fine.
    Anyone got an idea what the problem is?
    Regards
    a.dura

    Hi,
    when i try to open a certain pdf file directly by clicking on the link, the reader hangs up.
    when i start the reader and try to open the file directly after that, the reader hangs up.
    But when i open the reader, let it run for a minute or two and open the file then, then it works fine.
    Anyone got an idea what the problem is?
    Regards
    a.dura

  • Applescript to open a PDF file to a specific page

    I'm wondering if Preview (which I don't think can) or Adobe Acrobat (which I think can) can be scripted to open a PDF file to a certain page. Either on 10.7 or 10.6
    Thanks

    neither acrobat nor preview are directly scriptable.  best you can do is some GUI scripting:
    set newPage to 25
    tell application "System Events"
              tell process "Preview"
                        set frontmost to true
                        tell menu bar 1
                                  tell menu "go"
                                            click
                                            tell menu item "Go to Page…"
                                                      click
                                            end tell
                                  end tell
                        end tell
                        tell window 1
                                  tell sheet 1
                                            tell text field 1
                                                      set value to (newPage as text)
                                            end tell
                                            tell button "OK"
                                                      click
                                            end tell
                                  end tell
                        end tell
              end tell
    end tell

  • I cannot open this PDF file in Acrobat 8 Pro or in Acrobat Reader on Windows 7 64-bit

    I have a PDF file that I could open on my Windows XP 32-bit laptop in Acrobat 8 Pro or in Acrobat Reader.  I then upgraded to a Windows 7 64-bit laptop.  But now in Win7-64, I cannot open this same file using the same apps (Acrobat 8 Pro & Acrobat Reader XI). 
    When I try to open it in Acrobat 8, it does not load and instead a popup windows appears saying -
    Adobe Updater
    Some components needed to complete this operation are missing but information about them may be available on the Adobe website. Would you like to search the Adobe website for the missing components? 
    And I can choose either the OK or Quit buttons.  When I click OK, a web browser starts and goes to this website -
    http://www.adobe.com/special/adobe_update_manager/?type=Filter&name=FOPN_foweb&version=0.0 .0.0&lang=en_US&os=Windows&osver=6.1.7601&appid=acrobat8pro-en_US&cpu=intel
    This webpage says -
    Adobe Update Manager
    Adobe cannot locate the requested plugin. New plugins will be listed on this page. Currently there are no plugins.
    So now I am stuck, no direction to go.  I am left without any solution from Adobe for Acrobat on this file.
    When I try to open this PDF file in Reader, it does not load and instead a web browser is spawned loading the webpage -
    http://plugin.fileopen.com/Default.aspx?bhcp=1
    This is the FileOpen Plug-in for Adobe Acrobat/Reader, which prompts to -
    Please click OK to download the FileOpen Plug-in Installer for Adobe Acrobat/Reader 
    I click on OK, download and run the Installer file, accept the terms, and installed the FileOpen Client (x64) B928.  Upon completion, it prompts to Finish.  But it does not automatically bring Reader up or try to load the file.  So I try again to load the PDF file into Reader.  But once again, the file does not load and the web browser is spawned loading the same FileOpen Plug-in Installer link.  I click OK again, and start the same FileOpen Client process.  This time, it recognizes that I have FileOpen Client installed, and the window gives me two choices, Repair or Remove.  So since I apparently need this Plug-in, I choose Repair.  The process seems to complete the Repair.  But when I try to load the file, it still brings me back to the FileOpen Plug-in webpage.  So now I am stuck again, and left without any solution from Adobe for Reader on this file. 
    I tried Adobe support.  But apparently Adobe does not support past releases of their products (Acrobat 8), and also does not give free support for the current version of their free products (Reader XI). 
    Can this be fixed? 

    How is Acrobat 8 not fully Windows 7 compatible?  I see discussions on this Adobe Community saying how Acrobat 8 does work on Windows 7 and with 64-bit.  It appears that if Acrobat 8 is updated to the latest version, then this should fix AA8-Win7 issues.  And I am at the latest AA8 version, 8.3.1. 
    And how are Acrobat 8 and Reader XI are not compatible?  I have always had Acrobat and Reader installed on the same PC, without ever having any issues.  And Adobe allows the installation of one after the other.  So apparently Adobe allows them both to exist together.  If they are incompatible, then why would Adobe allow them to exist together? 
    Anyway, I did uninstall the FileOpen Plug-in and the Reader XI, then reinstalled the FileOpen Plug-in.  So now Reader is not installed and only Acrobat 8 is installed.  I then tried to load the PDF file, but I still get the Acrobat 8 error described above. 

Maybe you are looking for