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

ScottDM
ScottDM
Offline

Badges

Badges
9

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
22

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by ScottDM
Customize the badges you want to showcase on your profile
Re: Duplicate Two Rows at a Time - Adobe LiveCycle 25-09-2018
Got it... just made a button to duplicate an entire subform.

Views

423

Likes

0

Replies

0
Duplicate Two Rows at a Time - Adobe LiveCycle 25-09-2018
I've built many dynamic tables that typically add a single instance of a row at a time. Does anyone have a method for duplicating two rows at a time?Thanks.

Views

484

Likes

0

Replies

1
Date Field using Reader for MacOS - Adobe LiveCycle 01-05-2018
Has anyone had complaints from MacOS users about the popup calendar for date fields not working? The user clicks on the field and the calendar immediately disappears.I've verified that the user is using the latest version of the Reader DC for MacOS. Below is what it looks like on screen; you can see the button doesn't show properly.

Views

358

Likes

0

Replies

0
Re: Something is breaking this script - Adobe LiveCycle 16-04-2018
I've never needed quotes before, and like I said the script obviously runs because the xfa.host.messageBox statement works.So it's something in the form that is preventing the script from setting the presence property of the subform. Perhaps something is scrambled in the XML, which I would be useless at debugging.Not a big deal... I've worked around it by removing the objects from the subform.Thanks.

Views

516

Likes

0

Replies

0
Re: Flow onto next page without creating a new page - Adobe LiveCycle 16-04-2018
Uncheck "Allow Page Breaks within Content" for the subform that your text field is in. This will cause the entire subform to be sent to the new page.

Views

358

Likes

0

Replies

0
Re: Something is breaking this script - Adobe LiveCycle 16-04-2018
I can test it with messageBox, so I know the script executes, but the property doesn't get set.if (this.rawValue == 1) {xfa.host.messageBox("One");form1.Page.NextYear.NYSubform.presence = "visible";}if (this.rawValue == 0) {xfa.host.messageBox("Zero");form1.Page.NextYear.NYSubform.presence = "hidden";}

Views

516

Likes

0

Replies

0
Re: Something is breaking this script - Adobe LiveCycle 16-04-2018
I tried it with two ifs and it still wouldn't set presence = "visible".Very strange.

Views

516

Likes

0

Replies

0
Re: Something is breaking this script - Adobe LiveCycle 16-04-2018
So two ifs rather than an if with an else.Is else known to be unreliable?

Views

517

Likes

0

Replies

0
Re: Something is breaking this script - Adobe LiveCycle 16-04-2018
I fixed it by referencing the objects directly rather than hiding/showing the subform that contained them:if (this.rawValue == 1) {Title.presence = "visible";Grade.presence = "visible";Year.presence = "visible";}else {Title.presence = "hidden";Grade.presence = "hidden";Year.presence = "hidden";}...But if anyone can explain why hiding/showing the subform didn't work I'd like to know.Thanks.

Views

513

Likes

0

Replies

0
Something is breaking this script - Adobe LiveCycle 16-04-2018
I've got a dead simple script that hides and shows a subform based on the value of a checkbox:if (this.rawValue == 1) {form1.Page.NextYearSubform.NYSubform.presence = "visible";}else {form1.Page.NextYearSubform.NYSubform.presence = "hidden";}This works fine if it is the first event upon opening the form. But if any other click event fires (the form has lots of checkboxes and radio buttons), this script ceases to work. Anyone seen this before?Thanks.

Views

1.1K

Likes

0

Replies

7