Skip to main content
January 12, 2026
Question

Extract Page Missing from Actions

  • January 12, 2026
  • 1 reply
  • 120 views

I'm wanting to create an Guided Action that will extract a single page from (a large number of) multiple pdfs.  I believe the Extract Page should be found under Pages or Document Processing in the Actions menu, but I don't see Extract Page any where.  Is it no longer a part of Actions?

 

Is there another way to automate this?

 

Thanks!

1 reply

Amal.
Legend
January 12, 2026

Hi there

 

Hope you are doing well and thanks for reaching out.

 

The Extract Pages command is still available in Acrobat, but it isn’t currently exposed as an individual step inside the Actions Wizard, which is why you’re not seeing it under Pages or Document Processing. So you’re right — it can’t be directly added to a Guided Action the same way other page-level tools can.

What you can do instead:
1: Use “Split Document”

If the goal is always to extract the same specific page (e.g., page 1), you can use the Split tool to automate something close:

- Open Tools

- Go to Organize Pages

- Select Split

- Split by Number of pages = 1
- This will create single-page PDFs from each file.

Then you can batch-run that via an Action that does Organize Pages → Split on multiple files.

2: Use JavaScript in an Action: If you need a specific page (e.g., page 3 from each file), you can use the JavaScript in the action. Most users automate this via Split, JavaScript, or external scripting depending on complexity.

Hope this will help 

 

~Amal

profputrAuthor
January 12, 2026

Amal, thank you for your quick and helpful reply.  My documents are pretty large (over 100 pages each) so Splitting all of them might be messy.  Would you mind pointing me to an example of a JavaScript that might do this?

 

Thank you again, I really appreciate your help

Dennis

Legend
January 13, 2026

Hi @profputr

 

The page/pages you are going to extract, will those pages always be at a particular page number?

 

Action Wizard + JavaScript (extract one page per file)

What it does: For every PDF you run the Action on, it extracts a single page (you choose which: first, last, or a specific number) and saves a new 1‑page PDF next to the original file.

 

How to set up

  1. Open Tools → Action Wizard → New Action…
  2. Under More Tools, add Execute JavaScript.
  3. (Optional) Add a Save step at the end if you prefer to suppress prompts.
  4. Set Files to be processed to “Ask When Action Is Started” so you can select a folder.
  5. Paste one of the scripts below.
// Extract a specific page (e.g., page 1) from each input PDF
// Run inside Action Wizard (batch context)

 

(function () {
    // Page to extract (0-based index). 0 = first page.
    var targetPage = 0;

 

    // Skip if the doc doesn't have that many pages
    if (this.numPages <= targetPage) {
        console.println("Skip (too few pages): " + this.path);
        return;
    }

 

    // Build output path next to the source (filename_p{N}.pdf)
    var srcPath = this.path;
    var dot = srcPath.lastIndexOf(".");
    var base = (dot > 0) ? srcPath.substring(0, dot) : srcPath;
    var outPath = base + "_p" + (targetPage + 1) + ".pdf";

 

    // Extract just that page
    this.extractPages({
        nStart: targetPage,
        nEnd: targetPage,
        cPath: outPath
    });

 

    console.println("Extracted page " + (targetPage + 1) + " → " + outPath);
})();

 

 

You can adjust the script accordingly to extract the page number you want. 

 

// Extract the first page (index 0) from each input PDF

 

(function () {
    if (this.numPages < 1) return;

 

    var srcPath = this.path;
    var dot = srcPath.lastIndexOf(".");
    var base = (dot > 0) ? srcPath.substring(0, dot) : srcPath;
    var outPath = base + "_p1.pdf";

 

    this.extractPages({
        nStart: 0,
        nEnd: 0,
        cPath: outPath
    });

 

    console.println("Extracted first page → " + outPath);
})();

 

 


Best regards,
Tariq | Adobe Community Team