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

NikkisNook
NikkisNook
Offline

Badges

Badges
9

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
17

Discussions

Discussions
0

Questions

Questions
6

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by NikkisNook
Customize the badges you want to showcase on your profile
Re: Font Weight & Color Change On Variable Entry - Adobe LiveCycle 10-01-2014
Nevermind, I got it all on my own. Below is the code I wrote to make this field work appropriately: //This will change the font color and weight of the S/Ns that are to be flagged - DNLE (stg2whl_sn.rawValue > "KK31800" && stg2whl_sn.rawValue < "KK32098"){ stg2whl_sn.fontColor = "139,0,0"; } else {stg2whl_sn.fontColor = "0,0,0";} if

Views

197

Likes

0

Replies

0
Font Weight & Color Change On Variable Entry - Adobe LiveCycle 09-01-2014
I have a text entry field that should turn Bold & Red IF an ID >= KK1 and <= LL2 is entered.Is there a way to do this?Thanks a million!

Views

537

Likes

0

Replies

1
Re: Required fields when not submitting form - Adobe LiveCycle 09-01-2014
The PDF for Dynamic Forms states that you can set the validation at runtime. The code used will be:.mandatory = I am reading on this in attempt to learn so I hope this helps.Thanks,

Views

470

Likes

0

Replies

0
Re: Need field 1 to active second page - Help! - Adobe LiveCycle 09-01-2014
Thanks so much, this is how I have ended up with it: //if S/N is filled in, associated page will become visible - DNLEif ((!this.isNull || !this.rawValue =="") || (!qeck_sn.isNull || !qeck_sn.rawValue =="")) page2qec.presence="visible"; else if (this.isNull && qeck_sn.isNull) page2qec.presence="hidden"; else page2qec.presence="hidden";This seems to be working BUT when it is checked in the preview PDF -vs- saving out to reader and saving as other readerextender, etc... it often starts erroring ou...

Views

284

Likes

0

Replies

0
Re: Need field 1 to active second page - Help! - Adobe LiveCycle 08-01-2014
Now this statement with the previously set statements is causing the page to be visible when the field is cleared but not visible with the field has valid data entered. So deflated over this. It is so frustrating that the user wants (2) different fields to potentially activate a second page but not both are necessary. It may be:field 1 and not field 2field 2 and not field 1neither field 1 or 2both fields 1 and 2The problem is that IF the user goes in and changes the field(s) then it breaks the c...

Views

280

Likes

0

Replies

0
Re: Need field 1 to active second page - Help! - Adobe LiveCycle 08-01-2014
I wished there was an easy OR statement that will re-evaluate on change of either field, if either returns to a null state, the page remains visible BUT if both return to a null state then the page goes back to being hidden.

Views

280

Likes

0

Replies

0
Re: Need field 1 to active second page - Help! - Adobe LiveCycle 08-01-2014
Okay so this is basically what I have tried in various ways. Problem is IF I put this in either the exit or change event, AND IF the user changes his/her mind and returns to either field OR BOTH and removes the information (returning the fields to a null state) the page does not disappear again, it remains visible. Hmmm.....

Views

279

Likes

0

Replies

0
2 Fields populated, concatenate to 3rd field - Adobe LiveCycle 08-01-2014
I have (2) textfields that I need to take the data entered from each and populate a 3rd field using the data entered in field 1 (plus 3 spaces) and then the data that was entered in field 2. All of this will populate in field 3.Is this possible?Thanks,

Views

459

Likes

0

Replies

1
Conditional Formatting based on field entry - Adobe LiveCycle 08-01-2014
I need a field to become bold and change font color IF an array is entered:ExampleIf in textfied is typed KK123can I have the textfield change to bold & red font IF the text entered is between KK000 and KK999?Thanks

Views

346

Likes

0

Replies

0
Re: Need field 1 to active second page - Help! - Adobe LiveCycle 08-01-2014
OK, finished it all and now the users want to make a change. Now they want the following.IF page 1 SNField (!isNull) ORIF page 1 SN2Field (!isNull) then page2.presence="visible"else page2.presence="hidden"This needs to be on the change of either field 1 or 2 and could be any combination (ie) field 1 filled in and then field 2, field 1 removed, field 2 remains & vice versa.So sorry users just can't make up their mind!

Views

280

Likes

0

Replies

0