Can you have a running adobe reader navigate to named destination

I open a reader file using adobe reader via command line and use the nameddest parameter to have it navigate to the section within the document which works fine however is there a way once its running to have it navigate to another named destination?
Thanks!

Not if the file is already open.
On Thu, Jan 15, 2015 at 2:00 PM, jc99778991 <[email protected]>

Similar Messages

  • How can you open photos in adobe reader x

    How can you open photos in adobe reader x

    You can't - Adobe Reader will only open PDF files.

  • Can Adobe Reader users view named destinations?

    I created named destinations in my PDF documents using Adobe Acrobat.
    Can users who only have Adobe Reader see those named destinations?

    There is no Destinations pane in Reader that the user can display, but links to named destinations will work in Reader.

  • Can you print comments in Adobe Reader 8?

    I have a PDF document that has several comments ("sticky notes") added to it. I need to be able to print the document with the comments. However, I can't seem to find a way to do this. I've been searching online, but still can't find a solution.
    I have gone into print settings and selected 'Document and Markups', but still the comments don't print. Another site said to go to Edit > Preferences > Commenting > Print Notes and Popups , but I don't have a "Commenting" option.
    I don't understand why I would be able to add comments, but not be able to print them. I've checked the security on the document, and it's set as "Commenting Allowed". So I'm all out of ideas. Do I have to have Adobe Professional in order to print comments?

    Hi, I found this on Adobe's site. Give it a try.
    Cheers,
    Jenny
    Windows:
    In order to print comments from Adobe Reader 6, 7, or 8 you need to change a registry key. Please note that you edit the registry at your own risk.
    Open the registry editor and browse to the following key:
    HKEY_CURRENT_USER\Software\ADOBE\Acrobat Reader\6.0(or7.0, or 8.0)\Annots\cPrefs
    Double click the 'bprintCommentPopups' key and change the value to 1
    For Adobe Reader 8 you will need to add the key manually.
    Add the following Reg key:
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\8.0\Annots\cPrefs]
    "bprintCommentPopups"=dword:00000001

  • Can you "Extend Features in Adobe Reader" via Distiller Server 8?

    We use Distiller Server 8 to generate upwards of 500 PDF files (soft proofs of ads) each day. We would like the recipients of these files to be able to attach comments and markup the PDFs as a way of providing corrections back to us. The vast majority of these recipients use Adobe Reader, which means we have to "Extend Features in Adobe Reader" in order for the recipients to be able to do this. Is there any way to enable this feature using Distiller Server 8? If so, how?
    Thanks.

    Header 1
    Header 2
    As to whether I'm aware of any App's, Other than Adobe at the current time I think that You are as I am Stuck using the Old Manual method. Trying to adapt Extend Features within Adobe proper.I'm also not sure if I'm the only One having a terrible time posting Via Adobe's Link. Tom

  • Can you route documents in Adobe Reader?

    I need help in routing a document in Adobe Reader if thats possible?

    To send the currently open PDF document in Adobe Reader for iOS
    Tap the document to display the toolbars.
    Tap the Share icon (the second from the right) in the top toolbar.
    Tap E-mail Document.
    Tap Share Original Document in the E-mail Document dialog.
    Add email address(es) to To:
    Tap Send.
    (Click the image above to enlarge)

  • Can you have code run in a terminal and applet?

    For example in my program in Main we enter the data for menu and amount of the exchange but the result is displayed in an applet.
    works great in the terminal window.
    but when using an applet it will not work.
    import java.awt.*;
    import java.applet.*;
    import javax.swing.* ;
    import TerminalIO.*;
    public class MetricConversionMain    {
             final static String CRLF = "\n" ;     
             static String msgOut ;                   
         public static void main ( String[] args )     {
            int valid  = 0;
            int choose = 0;
            double numUnits = 0.0; 
            double convertedUnits = 0.0;
                                  // title, class, author and version info  to
         KeyboardReader entries = new KeyboardReader(); //object for keyboard entry
         while (valid != 1) {
                // menu for conversion selection 1 thru 4          
         System.out.println("\n\t\t1 \tFor inches to centimeters");
          System.out.println("\t\t2 \tFor quarts to liters");
          System.out.println("\t\t3 \tFor pounds to kilograms");
          System.out.println("\t\t4 \tFor miles to Kilometer");
              choose = // GW corrected my code to the present prior I was choose = choose.readInt etc etc
            entries.readInt("\n\t\tPlease choose one of the following menu items to convert: ");
          if (choose == 1 || choose == 2 || choose == 3 || choose ==4 ) {
               valid = 1 ;
          else {
               System.out.println("Invalid Selection.") ;
          switch (choose) {
              case 1 : System.out.println("Converting inches to centimeters... ") ; break ;
              case 2 : System.out.println("Converting quarts to liters... ") ; break ;
              case 3 : System.out.println("Converting pounds to kilograms... ") ; break ;
              case 4 : System.out.println("Converting miles to kilometers... ") ; break ;
         } // Error checking, reiterates the user's current choice prior to next question
         System.out.println();
         KeyboardReader useEntry = new KeyboardReader(); //object for keyboard entry
              numUnits =
            useEntry.readDouble("\n\t\tNow please enter the amount you wish to convert: ");
              System.out.println ("\t\tThe conversion comes to  " + numUnits);
         //KeyEntry equal = new KeyEntry();   
         //equal.setNumUnits
        //(useEntry.readDouble("\n\t\tNow please enter the amount you wish to convert: "));
         //System.out.println("\t\tThe conversion comes to  " + getnumUnits());
         switch (choose) {
              case 1 : Inch fromInch = new Inch(numUnits); break ;}
         case 2 : Quart fromQuart = new Quart(numUnits) ; break ;
              /*     case 3 : Pound fromPound = new Pound( numUnits) ; break ;
              case 4 : Mile fromMile = new Mile(numUnits) ; break ;
         } // Switch statement that performs the correct conversion based on the user's input*/
                   // Instantiate US Standard Objects
         /*     Inch fromInch = new Inch(1) ;
              Foot fromFoot = new Foot(1) ;
              Yard fromYard = new Yard(1) ;
              Mile fromMile = new Mile(1) ;
              Ounce fromOunce = new Ounce(1) ;
              Quart fromQuart = new Quart(1) ;
              Gallon fromGallon = new Gallon(1) ;
              Pound fromPound = new Pound(1) ;
              // Instantiate Metric Objects          
              Centimeter fromCentimeter = new Centimeter(1) ;
              Meter fromMeter = new Meter(1) ;
              Kilometer fromKilometer = new Kilometer(1) ;
              Gram fromGram = new Gram(1) ;
              Liter fromLiter = new Liter(1) ;
              Kilogram fromKilogram = new Kilogram(1) ;
              LitGal fromLitGal = new LitGal(1) ; */
         }     //  main
    }     //     class MetricConversionMainsupper classpublic class SuperConverter        {
         *     This class is the super class for a series of
         *     subclasses that perform conversion from metric to
         *     imperial or vice versa.
         protected double numUnits ;
         protected double convertedUnits ;
         protected double factor ;
         // Constructor
         public SuperConverter ( double argNumUnits, double argFactor )  {     
         numUnits = argNumUnits ;
         factor = argFactor ;
         convertedUnits = numUnits * factor ; //convert() ;
         }     // Constructor
         protected double getnumUnits()     {
              return numUnits ;
         protected void setnumUnits     ( double argNumUnits )     {
              numUnits = argNumUnits ;
         protected double convert  () {
              this.convertedUnits = numUnits * factor ;     
              return convertedUnits ;     
         public double getconvertedUnits()     {
              this.convertedUnits = convert() ;
              return convertedUnits ;
    }     //  end SuperConverter Classsubclass that works[public class Inch extends SuperConverter {
         public Inch      (double argNumUnits)
              super ( argNumUnits, 0.914 ) ;
              System.out.print   ("     ") ;
         if (argNumUnits > 1)
                   System.out.println(argNumUnits + " inches = " + convertedUnits + " centimeters") ;
              else
                   System.out.println(argNumUnits + " inch = " + convertedUnits + " centimeters") ;
    /code]
    The code I want to use  with the applet is import java.awt.*;
    import java.applet.*;
    import javax.swing.* ;
    public class Inch extends SuperConverter {
         final static String CRLF = "\n" ;     
         static String msgOut ;          
         public Inch      (double argNumUnits)
              super ( argNumUnits, 2.54 ) ;
              System.out.print ("     ") ;
              if (argNumUnits > 1)
              {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;
              msgOut += "     US Standard to Metric" + CRLF ;
         msgOut += "     -------------------------------------------------" + " " + CRLF ;
                   msgOut = argNumUnits + " inches = " + convertedUnits + " centimeters" ;
              else
              {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;
              msgOut += "     US Standard to Metric" + CRLF ;
         msgOut += "     -------------------------------------------------" + " " + CRLF ;
                   msgOut += argNumUnits + " inch = " + convertedUnits + " centimeters" + CRLF + CRLF + CRLF ;
              }     JOptionPane.showMessageDialog ( null, msgOut ) ;          
    }

    The issue I have is the applet/window appears behind the terminal window. below is the code that is use for the window. I want to have the window appear infront of the terminal window.import java.awt.*;
    import java.applet.*;
    import javax.swing.* ;
    public class Pound extends SuperConverter {
        final static String CRLF = "\n" ;     
             static String msgOut ;     
         public Pound      (double argNumUnits)
              super ( argNumUnits, 0.454 ) ;     
              System.out.print   ("     ") ;     
              if (argNumUnits > 1)
              {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;             
                  msgOut +=  "     Metric to US Standard" + CRLF ;
                  msgOut +=  "     -------------------------------------------------" + "         " + CRLF ;
                   msgOut += argNumUnits + " pounds = " + convertedUnits + " kilograms" + CRLF + CRLF + CRLF ;
              else
              {   msgOut = "     Metric Conversion Chart" + CRLF + CRLF;
                  msgOut +=  "     Metric to US Standard" + CRLF ;
                  msgOut +=  "     -------------------------------------------------" + "         " + CRLF ;
                   msgOut += argNumUnits + " pound = " + convertedUnits + " kilograms" + CRLF + CRLF + CRLF ;
              }   JOptionPane.showMessageDialog ( null, msgOut ) ;
    }

  • Can you have multiple revers mappings point to the same destination?

    I am trying to configure a reverse proxy to have multiple "Prefix" (location from redirects coming from the server) entries to be mapped to a single "Map to"(returned to the client). When I try this I get an error message that says:
    "Incorrect usage: Destination already exists Please enter another Destination to map"
    I need to be able to map multiple destinations back to the same location. I have an application that redirect to both / and http://server.domain.com, and I need to map both of these to https://proxy.domain.com, and can not. I have tweaked it to work by using proxy chaining and pointing one to the back end proxy, and one to the front end proxy instance that points to the same back end proxy, but this starts to get very complicated as the number of prefixes goes up that need to get to the same proxy interface.
    Is there some way to get around this, and have a many to one mapping for reverse mappings?
    Thanks in advance for you assistance.

    Couple of workarounds:
    1) Edit obj.conf manually
    2) Add the mapping as a regular one first (as opposed to reverse) and then use the edit option to change it to a reverse mapping.

  • I am getting messages that I can't download and read .pdf files since I have the wrong Adobe reader. I know about their security disasters of course, but I downloaded the latest version of Adobe Reader from the Adobe web site and I have other ,pdf file re

    I am getting messages that I can't download and read .pdf files since I have the wrong Adobe reader. I know about their security disasters of course, but I downloaded the latest version of Adobe Reader from the Adobe web site and I have other ,pdf file readers as well, and for some reason they won't work either. I have 5 computers running top end processors and RAM. By this I mean I have one, this one which I am using that has an AMD Phenom Black 3.2 Quad-core with 8 GBs of Corsair top DDR2 RAM, my other two AMD have either an Athlon II triple core with 4 GBs of DDR2 Corsair RAM, one with the Phenom X4 965 3.4 GHz Quad-core with 8 GBs of their best DDR2 RAM, and two Intels with the i7 920 Processors using the triple channel 1366 socket processors and one with 8 GBs of low latency DDR3 RAM and the other with 4 GBs of the same RAM. I am getting the message on this one, which has a fresh install of XP Pro X64 operating system, as do the other 4 as well. I have run Avast Business Pro Anti-virus on this one, which I am getting the message on with a single result which I deleted, and also both Spybot Search and Destroy, which came back clean as well as Malwarebytes Antimalware, which got a lot of tracing cookies now removed, and SuperAntiSpware which also found a few cookies also now deleted. Can you tell me what I need to do to get these files to show as .pdf files rather than as a clean blank page. One other issue is that I wish to know how to turn off my downloads so they are saved and Mozilla will give me the option of returning them instead of me losing them all together as it does now. Thanks for your assistance. If there is another Adobe reader I should download and install, could you provide me with the link to it? I appreciate your assistance here
    == When I download and try to read a .pdf file and when I am asked to turn off all Firefox files and if I do, I lose them since I need to know how to save them without rebooting my computer.

    Brilliant! Problem solved! Thanks so much.

  • How do I delete "You can't open the application Adobe Reader Updater Helper because PowerPC..."

    How do I delete "You can't open the application Adobe Reader Updater Helper because PowerPC applications are no longer supported." I have Mac w/ Lion and this message pops-up constantly. I would like to stop it from poping up? Any suggestions?

    Adobe Creative Suite 2 (CS2)'s Photoshop running in Snow Leopard Server installed into Parallels 8 for use in Lion or Mt. Lion:
                                  [click on image to enlarge]
    Apple is now selling Snow Leopard Server for $19.99 + sales tax & shipping costs at 1.800.MYAPPLE (1.800.692.7753) - Apple Part Number: MC588Z/A (telephone orders only).  Smarmy, self-important forum members will have to pay extra!

  • How can i open file from adobe reader..i already have adobe read

    how can i open file from adobe reader..i already have adobe reader installed and cannot open a
    file and i cannot convert my file into pdf..

    Is the file really a PDF? Where is it? Have you tried opening it from within Reader?

  • How many Management agents can you have running simultaneously on a host?

    Hi all,
    I've scoured the Oracle documentation and not been able to find a definitive answer to this question, how many Oracle management agents can you have on a single managed host target? Can you for example run an 11g agent and a 12c agent simultaneously (whilst migrating to 12c without upgrading the present OEM instance) If so can you run two 12c agents, each pointing to a different OMS? I’ve seen examples of an agent for each database instance on a host managed target, so a host with three Oracle database instances has three Oracle Management agents all pointing to the same OMS with each agent is monitoring just one of the database instances. There must be resource considerations here for memory, cpu and network traffic etc? I’ve always understood it to be one Oracle Management Agent per managed host
    Thanks

    I don't think there's any data on impact or performance since it's not a recommended configuration. If you have host/configuration monitoring enabled on both agents, they will be running the same queries/scripts against the host/inventory, etc. so they will likely have contention at some point. If you monitor the same databases, you will definitely see contention and increased overhead as there will be multiple agents running the same queries. You might also see problems w/ any of the server generated alerts (tablespace, etc) if you change thresholds as the agents send that to the database, and then the database will be out of sync with the other agents.
    What exactly is the goal for having multiple agents? Is it short term or long term?

  • Android running Adobe Reader can't view PDF

    My Android running Adobe Reader can't view Adobe PDF attachments that someone has emailed me through Exchange Server.
    I can, however, read the same PDF attachments if I receive said PDFs in my Gmail account.
    Please advise.
    Thanks,
    Jonathan Smith

    Im having the same problem, most pdf attachments work fine but I have a supplier who I can only view a blank page as the data does not display. Any ideas on how to correct this problem?

  • I have some PDF can show Chinese word in Adobe reader but can't show in Firefox version 19.0.1.Please help.Phone:21508158 Mr.Wong

    Dears,
    I have some PDF can show Chinese word in Adobe reader but can't show in Firefox version 19.0.1.Please help.
    Regards
    Brian Wong
    RVD department(Hong Kong Government)
    Phone:852-21508158

    Dear Support,
    May we have your email to discuss the problem?I want to send you the problem file test.pdf for you reference.Also we want to know any method,format ,style of font will process this error so that we can aware of it.
    Regards
    Brian Wong
    RVD department(Hong Kong Government) Phone:852-21508158

  • I can not run Adobe reader after installing it. A prompt said can only run an instance.

    I can not run Adobe reader after I installed it. I said can only run an instance.

    Hi,
    Can you share the screenshot of the error message.
    Please use the insert image button on the tool bar to insert the screenshot.
    If you cannot share the screenshot, please provide the exact error message with us.
    Thanks
    ~ Aditya Kalania

Maybe you are looking for

  • Is it possible to upgrade the GPU in this laptop HP DV7-2043cl

    I've been searching all over the net, and I am getting mixed answers.  I just got an extra laptop through a craigslist deal, and was wondering what, if any upgrades I could do for it. I have done a little bit of research, and if i could upgrade it se

  • ITunes 12 and third party apps

    We have a couple third party apps that have been integral to our iTunes media management: iRingtones -- convenient tool for creating ringtones from media registered with iTunes library TuneUp -- cleanup album art Neither of these works with iTunes 12

  • Business Content Activation of business partner

    Hi, I am activating standard business partner from business content.The business partner we have right now is of version 3.3/01 and has lot of custom fields. When I am activating the version 3.5/03 I want to make sure I don't lose those custom attrib

  • Icloud control panel does not install properly but only when trying to sync with Outlook 2010.  If I try to sync photos, etc. it works just fine

    Downloaded icloud control panel to Win 7.  Everything seems ok until you "apply" synching at the icloud control panel.  Then you get an error message that says "icloud control panel did not install properly".  Repairing in Windows control panel as su

  • Overloading constructor

    Hello I am having an adhoc problem with overloaded constructors: public class myFileRead { private int type; public myFileRead(File mp3, int nomenclature) {  //constructor 2 type = nomenclature; myFileRead(File mp3); public myFileRead(File mp3) {  //