Quantcast
Channel: Adobe Community: Message List - Javascript/ Batch Processing - Query (Please assist/advice)
Browsing all 100 articles
Browse latest View live

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 Article



Re: Javascript/ Batch Processing - Query (Please assist/advice)

That's quite easy to do, using the method I've mentioned before.

View Article

Re: Javascript/ Batch Processing - Query (Please assist/advice)

Is there a script where I could just add the content into it?

View Article

Re: 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 Article

Re: 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 Article


Re: 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 Article

Re: 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 Article

Re: Javascript/ Batch Processing - Query (Please assist/advice)

I'm not following you... What do you mean, exactly?

View Article


Re: 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 Article


Re: 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 Article

Re: 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 Article

Re: 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 Article

Re: 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 Article


Re: 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 Article

Re: 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 Article


Re: 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 Article

Re: 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 Article


Re: 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 Article

Re: Javascript/ Batch Processing - Query (Please assist/advice)

Did you execute it using Ctrl+Enter?

View Article

Re: 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 Article
Browsing all 100 articles
Browse latest View live




Latest Images