Answered
I have created a simple batch sequence to set the title property to the file name for all the docs in a folder. This is to improve the results from a search engine that returns the title property as its main tag.
However, when I run the sequence, the script editor launches for each doc and requires an ok to continue.
How can I disable this?
script is:
/* set title to file name */
try {
var s = this.documentFileName;
if (s.length > 1) {
var v = s.split('.');
this.info.Title = v[0];
}
} catch (e) {
event.rc = false;
}
- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com