Re: Change Printer in Acrobat from VBA
Where did you use the variable adobePrintSettings ?
View ArticleRe: Change Printer in Acrobat from VBA
Bernd Alheit wrote: Where did you use the variable adobePrintSettings ?That is the alias I am using to hold the javascript object 'getPrintParams. This was taken from the Acrobat JavaScript API SDK...
View ArticleRe: Change Printer in Acrobat from VBA
What is the actual value you are using for "printer name" and how are you determining it?
View ArticleRe: How to find sentences from PDF?
You can do what you want with the words that you get back from WordFinder - try to find sentences, paragraphs, etc. No such functionality is provided in WordFinder, though there are other higher level...
View ArticleRe: Change Printer in Acrobat from VBA
You aren't SETTING the printer params and/or using them on a specific print call. Just changing the value of the property does nothing.
View ArticleRe: How to find sentences from PDF?
You may have fun with a sentence like Mr. Smith visited the Adobe.com site and spent 237.99 on software...at least.
View ArticleRe: Change Printer in Acrobat from VBA
lrosenth wrote: You aren't SETTING the printer params and/or using them on a specific print call. Just changing the value of the property does nothing.I am still at a novice level with using...
View ArticleRe: Change Printer in Acrobat from VBA
I determine from runtime using Microsoft Excel. I am using a network printer name: "\\<network_path>\PRINTER_NAME"
View ArticleRe: Change Printer in Acrobat from VBA
As described in the Acrobat JavaScript API documentation, you need to use the print() method and pass the printParams.
View ArticleRe: Change Printer in Acrobat from VBA
You may not be able to use that printer name. See the app.printerNames method to get the available printer names.
View ArticleRe: Change Printer in Acrobat from VBA
The issue is using a .Print method in VBA I think calls the VBA's method before the JSO method's and a runtime error 438 occurs in the following instances: (438 = Object doesn't support this property...
View ArticleRe: Change Printer in Acrobat from VBA
Test Screen Name wrote: You may not be able to use that printer name. See the app.printerNames method to get the available printer names.That appears to not be the issue, the name appears in the...
View ArticleRe: PDWordFinder does not extract text in order
Also with xySortTable I have the same problem Text is not ordered, also if I copy and paste text from pdf file it is not ordered as it is displayed.Any ideas on how can I extract good text?Thank you
View ArticleRe: How to get working spaces from color setup preferences ?...
Hmmmm.... right, I already figured that out as I mentioned in message #2 above...... But how do I change the currently selected profile ?
View ArticleRe: Change Printer in Acrobat from VBA
lrosenth wrote: Lowercase 'p' in printNot working - VBA corrects this to capital 'P' but I don't know that that solves the issue, or does it... is there a call I should be using that I am not?
View ArticleRe: How to get working spaces from color setup preferences ?...
Sorry - that was a typo. It should have been ACSetWorkingSpaceProfile. However, I just realized that is a private API, so it won't help you
View ArticleRe: Change Printer in Acrobat from VBA
You should be using 'print', lower case P. Alternative is to actually call through with chunk of JavaScript directly.
View ArticleRe: PDWordFinder does not extract text in order
I would never have thought of trying to combine annotations and main text into a single flow. Generally comments are a separate flow, wherever they are. You may need to do your own sorting - you have...
View ArticleRe: Change Printer in Acrobat from VBA
lrosenth wrote: You should be using 'print', lower case P. Alternative is to actually call through with chunk of JavaScript directly.I cannot use lowercase P, as I mentioned in my response, due to...
View Article