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

Alle Formularfelder nach Scanvorgang automatisch zentriert (statt links ausgerichtet)

New Here ,
Apr 22, 2022 Apr 22, 2022

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!

TOPICS
Windows

Views

208

Translate

Translate

Report

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 ,
Apr 22, 2022 Apr 22, 2022

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!

Votes

Translate

Translate

Report

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 ,
Apr 22, 2022 Apr 22, 2022

Copy link to clipboard

Copied

You can change the font size of all text fields with a script.

Votes

Translate

Translate

Report

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 ,
Apr 23, 2022 Apr 23, 2022

Copy link to clipboard

Copied

LATEST

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;
	}
}

Votes

Translate

Translate

Report

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