Copy link to clipboard
Copied
Hallo!
Ich wandle bereits vorhandene Dokumente mit Adobe Acrobat Standard DC in Formulare um, in dem die automatische Erkennung von Formularfeldern aktiviert ist.
Das ist SEHR praktisch und funktioniert super, ABER:
Nachdem das Formular erstellt wurde, sind alle automatischen eingefügten Formularfelder immer links ausgerichtet (also der Inhalt).
Ich muss jedes der hunderte Formularfelder einzeln anklicken, um die Ausrichtung des Inhalts auf zentriert einzustellen. Echt nervig...
Gibt es eine Möglichkeit, dass ich ALLE Formularfelder des gesamten Dokumentes mit einmal auf "zentriert" ausrichten kann? (entweder vor oder nach dem Scannen)
Freu mich auf Antworten und DANKE euch!
Copy link to clipboard
Copied
Ähnlich auch mit dem Schriftgrad.
Nach dem Auto-Einfügen von Formularfeldern ist der Schriftgrad bei allen Formularfelder auf "Auto" eingestellt.
Ich möchte aber dass der Inhalt all meiner Formularfelder Schriftgrad 9 hat.
Kann ich auch das irgendwo voreinstellen? So dass ich nicht jedes Formularfeld einzeln anklicken muss, um dort den Schriftgrad anzupassen. Danke!
Copy link to clipboard
Copied
You can change the font size of all text fields with a script.
Copy link to clipboard
Copied
You can select multiple fields at once and change this (and most other) property for all of them at the same time. They do need to be of the same type, though. Also, as mentioned, this can be quite easily automated using a script, like this one:
for (var i=0; i<this.numFields; i++) {
var fname = this.getNthFieldName(i);
var f = this.getField(fname);
if (f==null) continue;
if (f.type=="text") {
f.alignment = "center";
f.textSize = 9;
}
}