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

greendesk123
greendesk123
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
18

Discussions

Discussions
0

Questions

Questions
9

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by greendesk123
Customize the badges you want to showcase on your profile
Re: Subform - Need All Fields to Expand In Height - Adobe LiveCycle 11-02-2016
I found the code on the web which partially accomplishes what I am trying to do. I put the code below in the ready.layout event of the other fields in the subform.var heightField = xfa.layout.h(xfa.resolveNode("PPDescription"), "pt"); his.h = heightField + "pt";There are button son the form to add and remove rows of the subform. The problem I have now is that although all the field heights now match, when I press the button to remove a row, there is a space below all the fields before the next s...

Views

817

Likes

0

Replies

0
Subform - Need All Fields to Expand In Height - Adobe LiveCycle 10-02-2016
I have a form with a flowed subform, containing several fields. I need all the fields in the subform to expand in height to fit the height of that particular field that is filling. How can I make all the fields in the subform expand in height when the one field expands?Thank you for any assistance on this.Here is a screenshot showing the issue with the subform. The fields started as two lines in height. I typed in three lines and the field expanded, as I needed it to, but the other fields in tha...

Views

1.8K

Likes

0

Replies

1
Presence not functioning with dropdown (works with button) - Adobe LiveCycle 08-08-2014
I have a form with dropdowns and buttons and Text that I don't want to print. The Presence is set to Visible (Screen only) for these objects (I used code to set the Text to visible screen only). Only the buttons are not printing. Any suggestions? My other forms work fine.

Views

305

Likes

0

Replies

1
Re: Code/Action to Change Textbox Value Font Size - Adobe LiveCycle 12-05-2014
I ended up do a radio button with 3 different font sizes:aaa = xfa.resolveNode("S19.SigAdd");bbb = xfa.resolveNode("S19.AddressSize");if (bbb.rawValue == "10") { aaa.font.size = "10pt";}if (bbb.rawValue == "8") {aaa.font.size = "8pt";}if (bbb.rawValue == "6") { aaa.font.size = "6pt"; }Also found code to use a checkbox for this here:LiveCycle ES2 * Adobe LiveCycle Designer ES2Magus069 suggestions worked as well. I replaced his sample text with a variable, and assigned the rawValue of the textbox ...

Views

421

Likes

0

Replies

0
Re: Code/Action to Change Textbox Value Font Size - Adobe LiveCycle 12-05-2014
Thank you very much for your responses.Magus069 response: I have put your code into a button. After clicking a button, I got an error ("... ExData...") - I found from other threads that I need to change the "Field Format" in the Field tab from Plain text to Rich text-that stopped the error.Where I am at now is that I need the text the User types in to change in font size. Do I assign this to a variable and then put that in the XML code?JoshG response: When I use your method, I get a tiny (1pt?) ...

Views

420

Likes

0

Replies

0
Code/Action to Change Textbox Value Font Size - Adobe LiveCycle 12-05-2014
I have a form with textboxes in which the user types in information. Sometimes, the user will type in more information than can fit into the textbox. When this happens, I would like the textbox font to become smaller so that the typed in text fits into the textbox. I need the textbox length to stay fixed. Any suggestions for coding or Actions to make the text font size do this - either a) automatically, or b) by the user clicking something?

Views

2.3K

Likes

0

Replies

5
Re: Keeping Subform On Specific Page - Adobe LiveCycle 13-02-2014
Thanks a lot for the replies. I am thinking over your replies to see if they help me. To clarify my original post, I want the page 2 to stay intact with the information on it (I called page 2 a subform, but I may have confused things by calling it that. The information on page two will always be the same). The instances of the subform on page one can be increased using buttons. When they are increased, and go over the first page, I want them to go on to page three, and not move the information o...

Views

313

Likes

0

Replies

0
Keeping Subform On Specific Page - Adobe LiveCycle 13-02-2014
I have a 4 page form containg multiple subforms. The form contains buttons for increasing/decreasing the instances of certain subforms - when these are clicked, this will of course will affect the location on the form of the subforms-move them further down. I have a whole page subform in the middle of the form and that I want to stay in the same place - always be page 2 - even if someone increases the number of subforms prior to it in the hierarchy. If a button is clicked which increases the # o...

Views

1.2K

Likes

0

Replies

4
Re: Using xfa.resolveNode with tables - Adobe LiveCycle 22-11-2013
These tutorials gave me the knowledge to get an answer to my question, and finish my project. Thank you.

Views

394

Likes

0

Replies

0
-print not working - Adobe LiveCycle 22-11-2013
When a certain condition occurs, I want the contents of a textbox to not print. I have the following code, and it is not working. Any ideas? xfa.resolveNode("FormWarningSubform.formWarn").relevant= "-print";Instead, of not printing it shows "-print" in the textbox.Thank you for any assistance.

Views

506

Likes

0

Replies

1