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

andy3ilson
andy3ilson
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
5

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by andy3ilson
Customize the badges you want to showcase on your profile
Age Calculation - Adobe LiveCycle 26-07-2010
I've got the following script inside a text field.calcualteI have two fields:1st Today's Date (calculated field, read only) "Today"2nd DOB date picker "DOB"3rd Age Text Field "Age"this is the script I have in "Age" // define some time constantsvar fSec = 1000; //secondvar fMin = 60 * fSec; // minutevar fHr = 60 * fMin; // hourvar fDay = 24 * fHr; // dayvar fYear = 365.25 * fDay; // yearvar strStart = this.getField("DOB").value; // dob//var strToday = util.printd("mmm dd, yyyy", new Date()); // g...

Views

639

Likes

0

Replies

1
Re: Help! javascipt and LiveCycle - Adobe LiveCycle 25-07-2010
The code above worked great for single checkbox(s) but I have a radiobutton which I’d like to produce similar results. My radio button has seven-options and two of them I’d like to require additional information if selected.If (this.rawValue == “6”,”7”) { TextField6.access == “readOnly”; TextField6.mandatory ==”disabled”; TextField7.access == “readOnly”; TextField7.mandatory ==”disabled”; } else { TextField6.access = “open”; TextField6.mandatory = “error”; TextField7.access = “open”; TextField7....

Views

228

Likes

0

Replies

0
Digital Signature Field-How to disable until all required fields are valid? - Adobe LiveCycle 24-07-2010
I have a document with several required fields however the user can sign the form regardless if these fields are valid. Is there an option within LiveCycle to control this, ie Signature field isn’t valid until all mandatory fields are true? I’m thinking this might consist of additional JavaScript. However, I’d like to get some advice from others with more expertise.Thanks, Andy

Views

917

Likes

0

Replies

1
Re: Help! javascipt and LiveCycle - Adobe LiveCycle 24-07-2010
Worked perfectly! Just had to copy the first part of the if statement to the initialize so the form was disabled on load until a user selects the appropriate check box.Thanks again, Andrew

Views

232

Likes

0

Replies

0
Help! javascipt and LiveCycle - Adobe LiveCycle 24-07-2010
I’ve got a little over three-months experience with Adobe LiveCycle. I have a row of three-text field items which I’d like to enable/disable based on a checkbox. So if Checkbox-1 == 0 then Field-1, Field-2, Field-3 will be disabledelse Checkbox-1 == 1 then Field-1, Field-2, Field-3 will be enabled & requiredI'm also trying to determine which item under the "Show" drop down that this script will need to be placed.Any help would be greatly appreciated, Andy

Views

5.7K

Likes

0

Replies

5