Single PDF pages export

Ask a Question related to Adobe Indesign Windows, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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?
    5. 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...
  3. #2

    Default Re: Single PDF pages export

    Check the Adobe Studio Exchange.

    Bob

    Bob_Levine Guest

  4. #3

    Default Re: Single PDF pages export

    [email]Mitchell_Thompson@adobeforums.com[/email] wrote in
    news:3bb4c903.-1@webx.la2eafNXanI:
    > Similar to single eps exports, only pdfs.
    If the script on Exchange doesn't work for you, ARTS makes a series of
    splitter/combiner plugins for Acrobat. While they are overkill for simply
    splitting files, they work very well indeed.
    Jerry_Farnsworth@adobeforums.com Guest

  5. #4

    Default 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

  6. #5

    Default 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

  7. #6

    Default Re: Single PDF pages export

    I have a script that does this.

    <http://www.EarlvillePost.com/ExportAsPages>
    Stu_Bloom@adobeforums.com Guest

  8. #7

    Default 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

  9. #8

    Default Single PDF pages export

    Stu_Bloom's script works like a charm!
    Thx
    JAHKO Guest

  10. #9

    Default Single PDF pages export

    Try Document - Extract Pages.
    Will create a new PDF for each page in the original.
    (Works in my V9)
    Regards
    Gill
    Unregistered Guest

  11. #10

    Thumbs up Re: Single PDF pages export

    Quote Originally Posted by Unregistered View Post
    Try Document - Extract Pages.
    Will create a new PDF for each page in the original.
    (Works in my V9)
    Regards
    Gill
    Great! meany thanks! works great!
    View->tools->pages - extract
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139