Open parameters do not work

Ask a Question related to Adobe Acrobat Macintosh, Design and Development.

  1. #1

    Default Open parameters do not work

    The open parameters specified in URL (e.g. <http://partners.adobe.com/asn/acrobat/sdk/public/docs/PDFOpenParams.pdf#page=6)> do not work (neither in Safari nor in FireFox).

    They do not seem to work from the command line either:

    /Applications/Adobe\ Reader\ 7.0.8/Adobe\ Reader\ 7.0.8.app/Contents/MacOS/Adobe\ Reader /A "zoom=50=OpenActions" "MyDoc.pdf"

    or

    /Applications/Adobe\ Reader\ 7.0.8/Adobe\ Reader\ 7.0.8.app/Contents/MacOS/Adobe\ Reader -A "zoom=50=OpenActions" "MyDoc.pdf"

    Where is the problem?
    Yves_Surrel@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. disable review and comment with PDF open parameters
      We have successfully created links on an HTML page to documents for review and comment using the "collab" PDF open parameter to set the comment...
    2. Parameters to SQL not work sometimes
      :confused; Here is the stored proc. I send a value for @OrgAction for the if statements. The first statement runs and returns data. Using the...
    3. 'out' parameters work outside of .NET?
      Hello, In .NET C# it is possible to define a parameter to a web service method as 'out'. The web service method is expected to set the value of...
    4. Too few parameters to RecordSet.Open?
      Hi All! My ASP page below receives the following error: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) Too few...
    5. objRS.Open parameters
      Are the values of adOpenForwardOnly and adLockOptimistic assigned automatically on the server or should I be preloading these with their numeric...
  3. #2

    Default Re: Open parameters do not work

    The command line referred to is for Windows only. Don't know about the
    web case: I feel it should work if, and only if, the PDF is being
    displayed in the browser window, by Acrobat (not Preview).

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  4. #3

    Default Re: Open parameters do not work

    If you want to do something similar to the command line for Windows on the Mac use the AppleScript dictionary and write a script.

    tell application "Adobe Acrobat Professional"
    open file "Macintosh HD:myPDF.pdf"
    zoom first PDF Window to 150
    end tell

    Rocky
    Rocket_Jay_Squirrel@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139