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

HOW TO CREATE A PDF FORM WITH SEPERATE BOXES FOR INDIVIDUAL LETTERS

Community Beginner ,
Apr 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

Hi, I have a form that I want people to fill in, I have enclosed an example , this is not the end result, I need to be able to calculate the number of letters which is why I need the individual boxes?

So they just type their name as normal rathert han clicking into each individual box with a letter? so you automatically move to the next box once one letter ha filled it?

Any ideas out there

ThanksBOXES.jpg

TOPICS
PDF forms

Views

6.7K

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

correct answers 1 Correct answer

Community Expert , Apr 30, 2019 Apr 30, 2019

Use this:

event.value = this.getField("NAME TEXT").valueAsString.replace(/\s/g, "").length;

Votes

Translate

Translate
Community Expert ,
Apr 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

In the options of the text field use the entry "Comb of n characters".

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
People's Champ ,
Apr 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

Create a single text field in Acrobat, and make it a "comb" field.

To make it a comb field, go into the properties of the text field you've created, and under the Options tab, right at the bottom, you'll find a checkbox that says "Comb of", and you can enter how many characters you want the comb to have.

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 Beginner ,
Apr 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

Will this calculate how many letters as I need to prices per letter?

so at the end of the namer it will have a box that says say 15 (for the 15 letters used)?, uderneath there will be a cost for the 15 letters?

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 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

For name use a text field with 15 characters, for order ref a text field with 6 characters.

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 Beginner ,
Apr 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

HI, there will be a standard number of boxes, say 20 boxes, they may have a short name or a long one, some boxes will be left empty, it's not for me to spcify how many?

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 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

You don't need fill all boxes.

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 29, 2019 Apr 29, 2019

Copy link to clipboard

Copied

You can enter less characters than the comb limit, but not more.

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 Beginner ,
Apr 30, 2019 Apr 30, 2019

Copy link to clipboard

Copied

HI, I have got the code to calculate the characters, how do I change this so that it doesn't count the spaces?,I just need text and numbers?

event.value = this.getField("NAME TEXT").valueAsString.length;

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 30, 2019 Apr 30, 2019

Copy link to clipboard

Copied

LATEST

Use this:

event.value = this.getField("NAME TEXT").valueAsString.replace(/\s/g, "").length;

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