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

radugbhr
radugbhr
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
17

Discussions

Discussions
0

Questions

Questions
2

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by radugbhr
Customize the badges you want to showcase on your profile
Re: Limiting Dynamic Field expansion - Adobe LiveCycle 13-03-2015
You are correct. This is in a table. I set the table to expand its height to fit depending on what is typed into the text field #2 (it's a single column with 5 rows, a text field for each row). Text field 2 is the only one set to expand to fit for it's height. But I also have a static text box below it that I don't want the table overlapping.Because of what the type of form is, I don't want to set the table's (or text field's) max height right from the get go, so that rules out an Initialize eve...

Views

229

Likes

0

Replies

0
Limiting Dynamic Field expansion - Adobe LiveCycle 12-03-2015
This has been asked, but never answered.Is there a way to limit a field set to "expand to fit" from expanding beyond a certain boundary? Be it a subform, neighboring field, etc. that can be set with a respect this fields space script? Point being, I don't want a field to expand its height so much that it overlaps a text field far below it.

Views

704

Likes

0

Replies

3
Re: Is there a way to contain an expanding table so that it does NOT overflow? - Adobe LiveCycle 11-03-2015
I am desperate to know this as well. I have one cell in a 1x6 table set to expand to fit height-wise. But I don't want the whole table to expand beyond the border of it's area. Anyone figure out how to constrain a table within a subform?

Views

204

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 25-02-2015
Using the script you gave me for the change event (xfa.resolveNode("TitleField0").rawValue = xfa.event.newText),I decided to try a different approach. Since the change event on TitleField1 will now change the rawValue on TitleField0, I thought maybe if I put the following script in the change event on TitleField1 , it would trigger onto TitleField0 correctly. So far it hasn't, but maybe I'm writing it wrong?if (form1.Card_order_form.Proof_card.TitleField1.rawValue.length < 36) { form1.Card_order...

Views

381

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 24-02-2015
Any more avenues we can try?

Views

378

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 19-02-2015
It does for the name fields. It's the title fields which are still troublesome. After looking at it further, I wouldn't have an issue with making TitleField[0] expand vertically to fit the multiple lines of text. The idea being to do what you said. Use the initial height of the field to limit the auto font size when the title is only one line, then have it expand to two lines when the title is long enough. Just not sure how to accomplish it. I've never used expand height to fit before.

Views

386

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 19-02-2015
I tried both. Both those worked to copy the raw value from TitleField[1] to TitleField[0] without global data binding, but TitleField[0] still won't change it's font size to 0 when the field is full. I used the xfa.resolveNode("TitleField[0]").font.size = "0pt"; on the full event of TitleField [0] with the limit to visible area option checked.

Views

596

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 15-02-2015
Yeah, TitleField[0] and TitleField[1] are both set to Use Global Data for their Data Binding. That way I can set TitleField[0] to protected or Read-Only and have it populated with the data values from TitleField[1]. Seeing as TitleField[0] is populated via global data binding, is there another option I have to check to force TitleField[0]'s scripts to fire correctly?

Views

609

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 15-02-2015
Tried xfa.resolveNode("TitleField[0]").font.size = "0pt"; in the full event on Title[0]. Also checked the Limit length to visible area for both Title Fields [0] and [1]. Still isn't firing. I'm wondering if it's because I have title field [1] populating title field [0] via global data binding between the 2?

Views

601

Likes

0

Replies

0
Re: Maximum font size script - Adobe LiveCycle 13-02-2015
Tried xfa.resolveNode("TitleField[1]").font.size = "0pt"; in the full event on Title[0]. No dice. I don't think the full event will run such a javascript. That's why I was thinking maybe put it in it's own script object then have the full event run that script object.

Views

602

Likes

0

Replies

0