Skip to main content
Participating Frequently
May 4, 2022
Question

Tausende PDF's mit JavaScript erweitern ?

  • May 4, 2022
  • 1 reply
  • 2022 views

Hallo zusammen,

wir müssen hier fast 10.000 PDF Dateien mit einem kleinen JavaScript erweitern.

Manuell natürlich kein Problem, jedoch sehr Zeitaufwendig.

Hat jemand eine Idee wie man das voll-/halb Automatisch durchlaufen lassen kann ?

 

This topic has been closed for replies.

1 reply

bebarth
Community Expert
Community Expert
May 4, 2022

Hi,

What do you mean by "extend"???

If you need to apply a script to all your files, you can write this script in an action wizard, then, when you run this action, you will be able choose all files or indicate a folder containing all these files.

@+

Participating Frequently
May 4, 2022

Hallo

wir wollen in 10.000 PDF Dateien ein JavaScript einbauen, welches das Datum aktualisiert.

Ulf

 

 

bebarth
Community Expert
Community Expert
May 4, 2022

Where is the date in all files? In a field with a common name?

if so, create an action wizard with this script (for the current date):

 

this.getField("theDate").value=util.printd("dd/mm/yyyy",new Date());
this.saveAs(this.path);

 

then double-click the action.

Click "Add files..." (or "Add folder..." if all files are in the same folder)

then select the files you need to modify.

Then click "Start" and wait for processing, that's all...

@+