Re: Javascript/ Batch Processing - Query (Please assist/advice)
What if the bookmarks are at least same all the time? Say you want the script to create bookmarks which are usually always there. (Then minimal manual intervention to correct or one or two more...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
That's quite easy to do, using the method I've mentioned before.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Is there a script where I could just add the content into it?
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Do you mean an example? Yes, in the reference file.Here's an example I sent recently to someone on a different forum: This code will create 3 bookmarks that go to pages 1 to 3:...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Will try this in a bit. What about the other processes which I have queried: -Crop the pages-Check the sequence of the pages that it goes from 1,2,3 and so on-ad metadata to the PDF-set view-Making...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Look at the various actions that are available to you when you create a new batch sequence. You can do most on the items on that list using those actions.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Another question regarding bookmarks. How do I set on the script to make the first page of the pdf file a FRONT COVER book mark, and the Last page the BACK COVER as bookmarks?
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
I'm not following you... What do you mean, exactly?
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
I want the script to set by default the 1st page of my PDF mag a bookmark called Front cover. I want the script to set by default the last page of my PDF mag a bookmark called Backcover.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
this.bookmarkRoot.createChild({cName:"Front Cover", cExpr:"this.pageNum = 0"})this.bookmarkRoot.createChild({cName:"Back Cover", cExpr:"this.pageNum = this.numPages-1"})
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
******Example: Let us just say that there are 3 Main headings on the content page. They are:CONTENT PAGE:Weekly NewsRegularsReviews They also have PAGE NUMBERS where each article starts for the...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Based on the bookmark createchild i like this idea. I would like to delete the existing bookmarks first then add my own bookmarks. How do i do this?
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Can it identify text with a certain color, and/or font style?No. Is it able to select the number of the heading and use that number as the set destination?No. I would like to delete the existing...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
The latter answer you wrote..., I assume you referring to this.bookmarkRoot.remove(); I have more queries. Can Scripting, also: 1. Execute a plug-in software, which I have installed to use inside...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
I assume you referring to this.bookmarkRoot.remove();Well, this.bookmarkRoot.remove() will remove all the bookmarks, but the remove() method can also be used to remove specific bookmarks. 1. Execute a...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
this.extractPages({nStart:5, cPath: "TestExtract1.pdf"}); It just saves the entire extract which I have asked to extract, into one full pdf file. My purpose what I want it to do, is for it to save the...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
"Acrobat has two folders for batch sequences, one for system ones and one for user-defined ones. You can find out what the user-defined path is on your machine by executing the following code from the...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Then call it multiple times, each time for each page number you want toextract (using different file names, obviously).
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Did you execute it using Ctrl+Enter?
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Hey Try67 Check this out... Here is a looping system for extraction for(var i=0; i<this.numPages; i+=1){ var extr = this.extractPages({nStart: i, nEnd: i}); extr.closeDoc(true);} It works by...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
You need to specify the cPath parameter with a unique file name (you can usethe value of the iterator i in the file name)...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Like this??? for(var i=0; i<this.numPages; i+=1){ var extr = this.extractPages({nStart: i, nEnd: i, "c\extr\page" + 1}); extr.closeDoc(true);}
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Almost. The path needs to have the correct syntax used by Acrobat JS forfiles, and must also end with ".pdf", so something like this:cPath: "/c/extr/page" + 1 + ".pdf"(I'm assuming here you're running...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Got the script to work eventually for extraction. The next issue is how to extract single pages for multiple pdf files, without it overriding the extractions. For example, If we have two PDF files in...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
You need to use some kind of unique identifier in the filename, for exampleyou can use the original file name or define some kind of global counterthat you increment after each save.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Is there a method ,or a coding, that will give me the sourcefile name of the file I am busy extracting. Purpose what I would like to achieve, is for the extracted single page to be saved, with the...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Hi Try The documentFileName works. However it saves filename with text info such as TRA5035...blah blah... Irrevalent info put as a filename for extraction. It has to saves such as...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
I don't really understand. documentFileName returns just the file name(including the extension).If you don't want the full file name there are various options of editingit, like with a regular...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
lol...my bad It is actually working...but it is adding the ".pdf" extension. How can I remove the extension of the DocumentFileName, so that I only adds just the filename and no extension? eg. If the...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
this.documentFileName.replace(/\.pdf$/i,"")
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Is there a way to read multiple pdf files with different filenames, and do the following: If filename has the words "apple" thenadd bookmarks for "apple"eleseif filename has the words "banana"thenadd...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
In the batch process script, you can use something like this: if (/apple/.test(this.documentFileName)) { // then add the "apple" bookmark} else if (/banana/.test(this.documentFileName)) { // then...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
will try in a minute and see if this method works... Why do you use test as your extention? Should it not be .pdf
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Hi This method is not working...tried everything. The bookmarks are not created...remains as is...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
If you want, you can contact me by email: try6767 at gmail dot com.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Hi I got it to work...eventually found out the issue. The filename HAS TO BE apple.pdf or else it will not work. so if the filename was apple_1234 then it would not work... ------------ Is there a way...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
If you used the code I provided then that's not true... It will work if theword "apple" is anywhere in the file's name.However, it is case-sensitive, so if the file is called Apple_1234.pdf itwill not...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Can this be also done: If filename has the words "apple" thenadd Description for "apple"eleseif filename has the words "banana"thenadd Description for "banana"
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Not sure what you mean by "add description for "apple""? Do you mean thatyou want to edit the meta-data of the file?
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
But which field in the meta-data? Let's say it's "Title". In that case, you use the same if-statement, andthen add:this.info.Title = "Apple"
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Like so? : if (/apple/.test(this.documentFileName)) { this.info.Title = "Apple" } else if (/banana/.test(this.documentFileName)) { this.info.Title = "Banana" } etc.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
How about if you wanna just add the document title name to the Title? eg if the filename is:Girls_mag_24_Dec2011.pdf then title should be: Girls_mag_24_Dec2011
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
I wrote to you in an earlier post how to get the file name (without theextension). Simply apply that to this.info.Title.
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
That method overwrites the previous file because what it is doing is only doing this:... if (/orange/i.test(this.documentFileName)) { this.info.Title =...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
this.documentFileName.replace(/\.pdf$/i,"") gives you the current file's name minus the extension. Think how you can incorporate that in the code you already have...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
I did it... I just left the if statement completely out of the equation for the the Title/Metadata query... I realised that the program actually does one file at a time meaning it will do the sequence...
View ArticleRe: Javascript/ Batch Processing - Query (Please assist/advice)
Making single PDF files over 1.5 MB smaller Can this be done via scripting? I saw a function under document ->Reduce file size... dunno if this helps the problem...
View Article