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

TashaEls
TashaEls
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
5

Discussions

Discussions
0

Questions

Questions
0

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by TashaEls
Customize the badges you want to showcase on your profile
Re: Is it possible to have a PDF Form that is both static and dynamic? - Adobe LiveCycle 14-09-2013
If I'm understanding your problem statement correctly, all you need to do is set the first page as positioned, and the second page (and all it's sub forms) to flowed.

Views

856

Likes

0

Replies

0
Re: copy data from subform #2 to the third subform - Adobe LiveCycle 04-09-2013
In the exit event of the legal_name field in the "name" subform, use the following script:if (xfa.resolveNode("form1.page1.address[" +this.parent.index +"]").personName.rawValue != "") { xfa.resolveNode("form1.page1.combine[" +this.parent.index +"]").legal_name.rawValue = this.rawValue + " " + xfa.resolveNode("form1.page1.address[" +this.parent.index +"]").personName.rawValue;} else { xfa.resolveNode("form1.page1.combine[" +this.parent.index +"]").legal_name.rawValue = this.rawValue;}In the exit...

Views

918

Likes

0

Replies

0
Re: Assign the value of a table to a text field - Adobe LiveCycle 04-09-2013
You need to use the "resolveNode" function in order to reference the objects correctly.In the script executed by the button, place the following:var selectedRow = TABLE_1.resolveNode("Page1.OPTIONS_A").rawValue;var selectedColumn = TABLE_1.resolveNode("Page1.OPTIONS_B").rawValue;txtTableValue.rawValue = TABLE_1.resolveNode(selectedRow + "." + selectedColumn).rawValue;The only other thing you need to do, it to set the value in your radio button binding to A_1, A_2, etc for each of the radio butto...

Views

846

Likes

0

Replies

0
Re: Pop-up message does not show up on the second instant - Adobe LiveCycle 03-09-2013
You're welcome

Views

2.0K

Likes

0

Replies

0
Re: Pop-up message does not show up on the second instant - Adobe LiveCycle 03-09-2013
You need to reference the instance specifically in order for the script to work on repeating instances.I'm not sure about the exact layout of your form, subforms and elements, but this script works if "All_A" is the repeating subform (just change the parent.instanceIndex reference to whichever element is the repeating one)var dropDown = "form1.Page1.ALL.Item_Sub.All_A["+parent.parent.parent.instanceIndex+"].details.detail.CC"; var strNewtext = xfa.resolveNode(dropDown).rawValue;if (strNewtext.le...

Views

1.7K

Likes

0

Replies

0