Copy link to clipboard
Copied
Hello i'm trying to find a script that takes a multipage document and extracts each page individually i've tried the scripts here https://community.adobe.com/t5/indesign-discussions/splitting-a-multi-page-indesign-document-into-se... but i dont think they're compatible with CC 2022 or 2023. does anyone have a working version of these files?
Thanks
Chris
Looks like those scripts were broken when the forums migrated. The main culprit is the loss of iterators, ie:
for (var i = 0; i < myPages.length; i++) {
var myPages = myPages;
}
In the above instance, we're missing [i] after myPages. The first full script looks like it should work, but it has several instances where the iterator is missing. Don't have the time to fix it, but perhaps you can. Otherwise it looks like it should work in theory.
Copy link to clipboard
Copied
Looks like those scripts were broken when the forums migrated. The main culprit is the loss of iterators, ie:
for (var i = 0; i < myPages.length; i++) {
var myPages = myPages;
}
In the above instance, we're missing [i] after myPages. The first full script looks like it should work, but it has several instances where the iterator is missing. Don't have the time to fix it, but perhaps you can. Otherwise it looks like it should work in theory.
Copy link to clipboard
Copied
I think you should consider to do it in Acrobat. There it is 1 single command to extract each page from any PDF as separate document.
Copy link to clipboard
Copied
Find more inspiration, events, and resources on the new Adobe Community
Explore Now