Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

rcwip
rcwip
Offline

Badges

Badges
8

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
22

Discussions

Discussions
0

Questions

Questions
7

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by rcwip
Customize the badges you want to showcase on your profile
Need help on validation of inputted text - Adobe LiveCycle 09-11-2011
Hi there. I got the following script for the format of an inputted number (7 numeric char). If entered as "1", the format will be changed to "0000001". Now I want to get this effect: if entered as "f1", the format will be changed to "F000001". How can I modify the script to achieve that? Thanks.if (!(this.isNull)) {var tf = this.rawValue;if (tf < 1 ) {xfa.host.messageBox("The number must be a numeral starting from 1.","Incorrect Number",1);xfa.host.setFocus("TextField27"); }if (tf.length < 7) {v...

Views

529

Likes

0

Replies

1
Re: Fillable PDF cannot be saved - Adobe LiveCycle 12-10-2011
Hi Paul.  Thanks.  I've sent you an e-mail for your advice. Raymond

Views

189

Likes

0

Replies

0
Re: Fillable PDF cannot be saved - Adobe LiveCycle 12-10-2011
As it is a fillable pdf and users are not allowed to put any annotations on the form. What I intend to do is : I place 2 checkboxes (without border and set to "cross" instead of "check") onto each of the titles. When user wants to delete, say director, he just click on the director and the 2 checkboxes on the "Director" will be crossed-out. Is that the best option?Cheers.

Views

149

Likes

0

Replies

0
Re: Fillable PDF cannot be saved - Adobe LiveCycle 12-10-2011
Hi Pguerett,Thanks for your reply. It's exactly what you think. The fields are, except the first field, all set to be no data binding. I reset them to the field names and they are new can be saved. Thanks a lot. By the way, I want to have one of the titles to be deleted by the user. I tried to use checkboxed (set to cross) to do the same but the highlight colour makes them "clouded" and the visual effect is not good. Any better ideas?Director / Secretary **** Delete as appropriate

Views

148

Likes

0

Replies

0
Fillable PDF cannot be saved - Adobe LiveCycle 12-10-2011
Hi there. I'm using LiveCycel designer ES to create several fillable pdfs and save the fillable pdfs as static forms. I use acrobat X pro to enable reader extension in order for the users to type in data and save the form, however, the fillable pdf just cannot save the inputted data except the data inputted in the first field. What did I miss?Thanks

Views

822

Likes

0

Replies

6
Re: Auto font size for textfield by javascript - Adobe LiveCycle 20-09-2011
Can anyone please advise?Cheers

Views

88

Likes

0

Replies

0
Auto font size for textfield by javascript - Adobe LiveCycle 19-09-2011
Hi there. I got the following script for a textfield in a fillabe PDF. Th length of the textfield is 150. It is required that if the text is > 100, the text size will be set to point 8, otherwise it will be point 12.var tf = this.rawValue;if (tf.length>50) {tf.textSize=8;}The above script was added to the script editor show=Change (not ok), full (failed), validate & validationState (no response). Did I miss something?Thanks.

Views

465

Likes

0

Replies

1
Allow user to fill in a fillable pdf but disallow adding comments and annotation - Adobe LiveCycle 23-04-2011
Hi there. I have a fillable pdf created by livecycle designer. I want to let users fill in the form but prevant them adding comments and annotatons to the form. I cannot reset the above requirements in form property - form security if I have already set a password and allowed user to fill in the form. Can I user javascript to that effect during the document loading?Thanks.

Views

744

Likes

0

Replies

2
Re: Set textfield value to default value - Adobe LiveCycle 20-04-2011
Hi Paul,I got a validation problem on a fillable form and want to seek your advice. Can I e-mail my form to you for advice,please?

Views

618

Likes

0

Replies

0
Script to check the null value of two fields - Adobe LiveCycle 20-04-2011
Hi there. I got the following script to check the null value of the two field before a button can be enabled. However, it seems that there is some syntax errors. Can anyone please advise?Thanks.if (("TextField1[0]").rawValue <> "" & ("DateTimeField1[0]").rawValue <> "") {oTargetField = this.resolveNode(" form1.#subform[0].Button1"); oTargetField.access = "open";}

Views

912

Likes

0

Replies

2