These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Entering data all in Upper case

patra
Registered: Oct 19 2006
Posts: 270
Answered

How I can make all entering data into text fields to show and print in capitals letters?

Thanks

My Product Information:
LiveCycle Designer, Windows
gkaiseril
Expert
Registered: Feb 23 2006
Posts: 4308
See [url=http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=111]Adding Script to Forms[/url] for the use of the ".toUpperCase()" JavaScript method in LiveCycle Designer.

George Kaiser

patra
Registered: Oct 19 2006
Posts: 270
I try to apply the script into Date/Time field with patern Jan 13, 2009 but does not work!
With text fields works fine.

Thanks
gkaiseril
Expert
Registered: Feb 23 2006
Posts: 4308
The example was for a text field.

If you want this in FormCalc, for a text field with a ready:layout scirpt of:

// Current Date in MMM DD, YYYY style in uppercase.
$.rawValue = Upper(num2date(date(), "MMM DD, YYYY"))

will display the current date with the short month in uppercase letters.

George Kaiser