Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
3

Change default number of pages when splitting document

Explorer ,
Jun 12, 2023 Jun 12, 2023

*posting again because someone kept wrongfully marking a "correct answer" last time

 

I have contacted support and they have told me it is not currently possible but maybe the community knows of a workaround. When splitting documents the default number of pages to split into is 2. I always need to change this to a 1 and the number does not get saved in between uses. This can become tedious and slow me down when I have to split around  ahundred documents a day. I have already submitted a fix for this as a suggestion so I am hoping that works out.

When I looked into it it seemed like the 2018 version had the same issue and it was fixed 4 years ago but they did maintain that fix for the newest version which I had installed a couple weeks ago. Hopefully this gets resolved as it would make my job much easier. 

 

If anyone knows any kind of creative workaround for this please let me know. Thanks

TOPICS
How to , PDF
1.8K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
3 ACCEPTED SOLUTIONS
Community Expert ,
Jun 12, 2023 Jun 12, 2023

I don't believe so, but a custom-made script can be used to achieve the same result. It can also skip this dialog entirely and just split each page as a new file automatically.

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 13, 2023 Jun 13, 2023

Create a Custom Command (or an Action) and have it execute this code:

 

 

for (var p=0; p<this.numPages; p++) {
	this.extractPages(p, p, this.path.replace(/\.pdf$/i, "_part " + (p+1) + ".pdf"));
}

 

 

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 31, 2023 Oct 31, 2023
LATEST

Same issue!  Please restore the option to change the default back to 1 page splits!! 

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 12, 2023 Jun 12, 2023

I don't believe so, but a custom-made script can be used to achieve the same result. It can also skip this dialog entirely and just split each page as a new file automatically.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 12, 2023 Jun 12, 2023

I'm not really an expert on it, could you shed some light on how exactly I would go about that? Thanks for the response

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 12, 2023 Jun 12, 2023

Sure, but you need to better explain your ultimate goal. Do you just want to split each page as its own file?

What should these new files be named, and where should they be saved?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 13, 2023 Jun 13, 2023

Yes I want to split each page of a larger PDF into its own single page PDF and just have them saved to the same folder as the original file. FOr naming I am fine with just part 1 , part 2, etc. just like when actually using the split function

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 13, 2023 Jun 13, 2023

Create a Custom Command (or an Action) and have it execute this code:

 

 

for (var p=0; p<this.numPages; p++) {
	this.extractPages(p, p, this.path.replace(/\.pdf$/i, "_part " + (p+1) + ".pdf"));
}

 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jun 13, 2023 Jun 13, 2023

So I just went to add this and Acrobat told me that I could not add an action on the new version... but I can revert to an old version from the menu. Very quick fix and now my split defaults to 1. I also added this action and it works perfectly which might save me even more time so thank you. You are awesome

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 31, 2023 Oct 31, 2023
LATEST

Same issue!  Please restore the option to change the default back to 1 page splits!! 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines