E-Mail specific page in a pdf document

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

  1. #1

    Default E-Mail specific page in a pdf document

    I have a 24 page document in Acrobat. You can print out specific pages, but can you e-mail specific pages?
    Kathy_N@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Jump to specific bookmark upon opening PDF document
      Here's the bone that you wanted thrown....Try using a "Named Destination" See the PDF Open Parameters documentation and/or Acrobat Help for more...
    2. Need help with CDONTS or other object to receive mail in a specific way
      Hello, Is it possible to write a script using CONDTS object to read all emails from the SMTP IIS "Drop" folder without changing the username and...
    3. How to get CDO mail to email specific pages
      HI, On my site, I would like to have the email a friend feature, email a specific page. So If I'm on page A and click email this page to a firend,...
    4. Linking to specific pages within a document
      Hi I am creating a CDRom using dreamweaver and linking to acrobat files which open in internet explorer. All files (xhtml pages, acrobat documents...
    5. can I use a pdf document as a mail merge document
      can a pdf document be used as a mail merge document using only Acrobat 5 Professional?
  3. #2

    Default Re: E-Mail specific page in a pdf document

    You must first extract the pages you want (Document > Extract Pages), then you can open the extracted pages saved as a PDF and choose File > Email. The latter command opens up your email client with the extracted PDF as an attachment.
    Steve_Werner@adobeforums.com Guest

  4. #3

    Default Re: E-Mail specific page in a pdf document

    I want to be able to email only specific, non-contiguous pages in my document but when I try to select pages using the CTRL key and then extract them, it extracts all the pages in between. Any way around this?
    WillCounty@adobeforums.com Guest

  5. #4

    Default Re: E-Mail specific page in a pdf document

    Drop them onto the desktop ....

    Jon
    Jon_Bessant@adobeforums.com Guest

  6. #5

    Default Re: E-Mail specific page in a pdf document

    ....then zip up the pages you need and email them.
    Steve_Werner@adobeforums.com Guest

  7. #6

    Default Re: E-Mail specific page in a pdf document

    Regarding (Doc>Extract Pages>... are there settings associated with it?
    I have a doc with a PDF Version 1.3 (Acrobat 4). If I use Acrobat 6 to extract pages
    it extracts and places a higher PDF Version (1.5). I need to be able to extract and maintain
    the original PDF Version. Is this possible without using Acrobat v4 to do it. Thanks
    =errol
    erroldesilva@adobeforums.com Guest

  8. #7

    Default Re: E-Mail specific page in a pdf document

    Errol,

    You will need to use Acrobat 6 to save down to version 1.3. I am not on my Mac
    where I have version 6 available. But I think you can do this with the pdf
    optimizer.

    Mike
    MikeKazlow@adobeforums.com Guest

  9. #8

    Default Re: E-Mail specific page in a pdf document

    While I was using I found Optimizer didn't necessarily do what it was supposed to. (But, you are right Acrobat 6 Optimizer will change file types back to 1.3 V4).

    Acrobat 7 does a far better job and optimizer is much easier to get to to use.

    In Acrobat 7 Pro there also is a command reduce file size you can also set version as well.
    pjonesCET@adobeforums.com Guest

  10. #9

    Default Re: E-Mail specific page in a pdf document

    PjonesCET
    Thanks, yes optimizer in Acrobat Pro 7 did the job.
    =errol
    erroldesilva@adobeforums.com Guest

  11. #10

    Default Re: E-Mail specific page in a pdf document

    Phil,

    You upgraded then?

    Jon
    Jon_Bessant@adobeforums.com Guest

  12. #11

    Default Re: E-Mail specific page in a pdf document

    Yes I have the latest version of Acrobat (7.0.8 ). I always update /upgrade to the detriment of my pocketbook. :-( I also use the latest version of OSX on my PB17" (OSX.4.7 for now).
    pjonesCET@adobeforums.com Guest

  13. #12

    Default Re: E-Mail specific page in a pdf document

    Hee hee - love the phrase 'pocketbook' ...

    Jon
    Jon_Bessant@adobeforums.com Guest

  14. #13

    Default Re: E-Mail specific page in a pdf document

    Yes Its what you call a Wallet. It fits in my Pocket and folds up like a book. There is a difference between a "PocketBook" and a "Purse".

    My mother carries a Purse but she has a Pocketbook inside.

    Don't assume things just because your on the "left coast" and I am in the deep south. ;)
    pjonesCET@adobeforums.com Guest

  15. #14

    Default Re: E-Mail specific page in a pdf document

    If Jon were on the left coast I'd see him more often. Jon's not from these parts. The left hemisphere, I mean.
    sws@adobeforums.com Guest

  16. #15

    Default Re: E-Mail specific page in a pdf document

    Well what ever coast he was from he was assuming something just because I used the word "Pocketbook". All men in my parts except those making over a 1 mil a year call a wallet a Pocketbook. Over a mil thet might call it a wallet. However; I know one that calls his a Pocketbook.

    Just depends upon what part of the country you come from.
    pjonesCET@adobeforums.com Guest

  17. #16

    Default Re: E-Mail specific page in a pdf document

    We call it pounds - but specifically where I'm from, it's called pynt ..

    Jon

    PS - but I do come across to the east and west coast quite a lot ..
    Jon_Bessant@adobeforums.com Guest

  18. #17

    Default Re: E-Mail specific page in a pdf document

    OK... it's not perfect or elegant but it will do the job. The caveat is that it gives the temp file name and not Pages from "the document title".

    //Begin Code
    /* Extracts and emails the page specified by the user. */

    app.addMenuItem({ cName: "Mail Current Page", cParent: "Tools", nPos: 0, cExec: "extractMail()"});

    function extractMail()
    {



    var pageFind = app.response({
    cQuestion:"Enter the page number you want to email.",
    cTitle:"Page Number To eMail"
    });

    if(pageFind != null)
    {
    this.pageNum = pageFind-1;

    var pStart = pageFind - 1;
    var pEnd = pageFind - 1;
    this.extractPages(pStart, pEnd);

    var t = app.thermometer;
    this.closeDoc();

    app.execMenuItem("AcroSendMail:SendMail");
    }
    };

    //End Code

    ~T
    Tembowa@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