Ask a Question related to Adobe Acrobat Macintosh, Design and Development.
-
Kathy_N@adobeforums.com #1
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
-
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... -
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... -
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,... -
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... -
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? -
Steve_Werner@adobeforums.com #2
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
-
WillCounty@adobeforums.com #3
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
-
Jon_Bessant@adobeforums.com #4
Re: E-Mail specific page in a pdf document
Drop them onto the desktop ....
Jon
Jon_Bessant@adobeforums.com Guest
-
Steve_Werner@adobeforums.com #5
Re: E-Mail specific page in a pdf document
....then zip up the pages you need and email them.
Steve_Werner@adobeforums.com Guest
-
erroldesilva@adobeforums.com #6
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
-
MikeKazlow@adobeforums.com #7
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
-
pjonesCET@adobeforums.com #8
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
-
erroldesilva@adobeforums.com #9
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
-
Jon_Bessant@adobeforums.com #10
Re: E-Mail specific page in a pdf document
Phil,
You upgraded then?
Jon
Jon_Bessant@adobeforums.com Guest
-
pjonesCET@adobeforums.com #11
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
-
Jon_Bessant@adobeforums.com #12
Re: E-Mail specific page in a pdf document
Hee hee - love the phrase 'pocketbook' ...
Jon
Jon_Bessant@adobeforums.com Guest
-
pjonesCET@adobeforums.com #13
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
-
sws@adobeforums.com #14
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
-
pjonesCET@adobeforums.com #15
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
-
Jon_Bessant@adobeforums.com #16
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
-
Tembowa@adobeforums.com #17
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



Reply With Quote

