Ask a Question related to Adobe Indesign Windows, Design and Development.
-
Mitchell_Thompson@adobeforums.com #1
Single PDF pages export
I've got a 270 page document that needs to be exported into single pdf files (ie. 1 page per file = 270 pdfs) and wanting to know if there is any sort of a script or "action" in Indesign CS that can help.
Similar to single eps exports, only pdfs.
Cheers
Mitchell_Thompson@adobeforums.com Guest
-
Creating spreads using single pages
How do I create spreads using single pages instead of facing pages? I used to be able to do this in Quark, but I can't figure out how to do it in... -
Layout multiple PDF pages onto a single PDF page
Hi, I am working with Acrobat SDK and developing a plugin for Acrobat 7.0 on Windows. I have been looking for a way to layout multiple PDF pages... -
Single Quote Problem in Excel to Export
Hi, We have to export our data in sql server table to any excel sheet. We have a template to export, using oledb we are inserting rows to this... -
Make a multi paged PDF into single pages?
I want all pages included in a .pdf document as single .pdf pages. Is there an easy way to do this? -
How to implement Multiple Login Pages in a single Web Application
Hello I have a web application in which i m ineed of implementing multiple login pages with the help of forms based Authentication. on the user... -
-
Jerry_Farnsworth@adobeforums.com #3
Re: Single PDF pages export
[email]Mitchell_Thompson@adobeforums.com[/email] wrote in
news:3bb4c903.-1@webx.la2eafNXanI:
If the script on Exchange doesn't work for you, ARTS makes a series of> Similar to single eps exports, only pdfs.
splitter/combiner plugins for Acrobat. While they are overkill for simply
splitting files, they work very well indeed.
Jerry_Farnsworth@adobeforums.com Guest
-
Mitchell_Thompson@adobeforums.com #4
Re: Single PDF pages export
I managed to find a little program called pro pdf manager and the trial version is pretty good - US$60 for a the full software, I can't believe that there isn't some sort of feature in either Indesign or acrobat pro for that matter.
Mitchell_Thompson@adobeforums.com Guest
-
Bob_Levine #5
Re: Single PDF pages export
It's really not something that most people need to do. The nice thing
about these programs is the ability to either script them or buy third
party plugins for something that programmers didn't have time for or
didn't think of.
Bob
Bob_Levine Guest
-
Stu_Bloom@adobeforums.com #6
Re: Single PDF pages export
I have a script that does this.
<http://www.EarlvillePost.com/ExportAsPages>
Stu_Bloom@adobeforums.com Guest
-
Ken_Grace@adobeforums.com #7
Re: Single PDF pages export
The Acrobat 5 CD carries a script for splitting a PDF into individual pages.
There is a wrinkle in that while it numbers the files consecutively, it
starts from 0 so all your pages are one back. I modified it and here it is
(there is probably some redundant code in it, but it works anyway). Save it
as a .js file as something like splitpdf.js in Acrobat>Javascripts>User.
Run it from Acrobat (without the file being opened) from File>Batch
Processing. It should appear on the drop down menu. You end up with
myfile.pdf plus myfile_Page1.pdf etc in the same folder.
/* Extract Pages to Folder */
// regular expression acquire the base name of file
var re = /.*\/|\.pdf$/ig;
// filename is the base name of the file Acrobat is working on
var filename = this.path.replace(re,"");
try {
for (var i = 0; i < this.numPages; i++)
this.extractPages(
{
nStart: i,
});
} catch (e) {
console.println("Aborted: "+e)
}
k
Ken_Grace@adobeforums.com Guest
-
-
Unregistered #9
Single PDF pages export
Try Document - Extract Pages.
Will create a new PDF for each page in the original.
(Works in my V9)
Regards
GillUnregistered Guest
-



Reply With Quote


