Title: Re: How do you tell Acrobat 7 to print using
AS?
This works for me with Acrobat 6 and I imagine 7 would be similar
(but you never know):
tell application "Acrobat 6.0.2 Professional" tell
active doc print pages
first 13 last 14 end tell end
tell
Also, if it's not frontmost, the following worked:
tell application "Acrobat 6.0.2 Professional" set
x to
first
document
whose name starts with "#965" tell
x print pages
first 12 last 13 end tell end
tell