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

DiveMasterTx
DiveMasterTx
Offline

Badges

Badges
13

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
3

Posts & Comments

Posts & Comments
16

Discussions

Discussions
0

Questions

Questions
7

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by DiveMasterTx
Customize the badges you want to showcase on your profile
Function Help to change many .presence - Adobe LiveCycle 06-02-2019
I have a dynamic form which has multiple comments scattered among multiple pages, sometimes the form is used electronic and sometimes it is printed. I have a dropdown field to indicate the selected current use. The difference is the comment field changes from a single text field per section for digital use to a table with multiple rows for printing for hard copy use. I am calling the function on my form ready and from the exit event of the dropdown field. However the below function isn't actuall...

Views

650

Likes

0

Replies

0
Re: Validation / Reset Functions, easy to manipulate and to change Forms!!!! - Adobe LiveCycle 16-01-2019
Just found this thread. I had a question on resetting dynamic forms with repeating instance subforms and radzmar gave me a great generic function for resetting them if you want to add another aspect to this thread Reset Dynamic Form with multiple tables

Views

2.0K

Likes

0

Replies

0
Lock Document After Signing - Adobe LiveCycle 15-01-2019
I have two dynamic forms that I am currently working on. They both support multiple digital signatures and I actually copied the sub-form from one form to the other. The digital behavior is different in between the forms and it is providing me some frustration trying to make them behave the same. I really don't want to try the next thing that came to mind and delete all the content from the form with the checkbox and copy the entire form from the other file to see if that makes them work the sam...

Views

2.1K

Likes

0

Replies

2
Re: What Form event occurs after a button click for importdata() - Adobe LiveCycle 14-01-2019
There are a lot of places for event when attempting to determine which events occur in which sequence! Based on radzmar's key information it took me days of placing events and testing to figure out the correct form event to use. The answer is after the field event code runs with the ImportData(), place code on the top level of the form in the ::ready:form event to take any actions necessary following the import and before the user gets to interact with the form. I marked this an answered and gav...

Views

1.3K

Likes

0

Replies

0
Re: store dropdown value to var on form load - Adobe LiveCycle 14-01-2019
To make this work I inserted a script object and named it "Signers" then inserted the below function.LP.#variables[0].Signers - (JavaScript, client)Then on the actual dropdown field I added a change event where I called the function using the below syntax; LP.Pg1.Pg1Ft.cboSigner::change - (JavaScript, client) var vCallEvent = "Field cboSigner::change "; Signers.fShowSign(vCallEvent)Then on the FORM I added a ready event where I called the function using the below syntax; LP::ready:form - (JavaSc...

Views

1.3K

Like

1

Replies

0
How to duplicate or mirror dynamic subforms or tables and its filled in cells - Adobe LiveCycle 10-01-2019
I have been building forms with multiple dynamic subforms and tables. I am fairly comfortable with the correct way to add, delete and move rows in the dynamic subform or table. I have been asked to make a multipage form that has identical repeated information on a few pages. Instead of the user having to reenter the information on each page I would like to use the first table that contains the user entered rows and data to build the second and third copy. Ideally these would simply mirror as the...

Views

718

Likes

0

Replies

0
Re: How would you use a javascript function to format all buttons - Adobe LiveCycle 10-01-2019
Now I get to play and see if I can make a single function for Instance manager buttons What let me solve this was Is there a way to know which subform button was clicked? Answered by radzmar​function fMouseIn(){// xfa.host.messageBox("The button '" + xfa.context.name + "' (" + xfa.context.somExpression + ") event triggerred."); // set caption to red and underlinedvar MyButton = xfa.context; MyButton.caption.font.underline = "1"; MyButton.caption.font.fill.color.value = "255,0,0"; }function fMous...

Views

923

Likes

0

Replies

0
How would you use a javascript function to format all buttons - Adobe LiveCycle 10-01-2019
How would you go about using a function to change button format in one place? I think the function needs to identify which button called it instead of using "this"?Currently I put code in each buttons events see below for a sample.LP.Pg3.PgBody.rowSFrmLP.sfrmBtn.Remove::mouseEnter - (JavaScript, client)// set caption to red and underlined this.caption.font.underline = "1"; this.caption.font.fill.color.value = "255,0,0"; LP.Pg3.PgBody.rowSFrmLP.sfrmBtn.Remove::mouseExit - (JavaScript, client)// s...

Views

988

Likes

0

Replies

1
store dropdown value to var on form load - Adobe LiveCycle 04-01-2019
I have several forms I'm trying to build and use dropdown fields in. The forms work great up to a point, they store the user selected values when entered and saved, when reopened the form dropdown shows the saved value. I am trying to use code to fire after the form opens and use the saved and visible dropdown value which loaded into the field via a function or with code.I'm trying to read the saved value after it reopens and have tried unsuccessfully to use a lot of event. I find it hard to bel...

Views

2.1K

Likes

0

Replies

2
Re: What Form event occurs after a button click for importdata() - Adobe LiveCycle 03-01-2019
I am unable to access the second link behind the company firewall. I understand code following importdata() and remerge() functions execution in that code section doesn't execute. What I am trying to find out is if after a on click button event and the form has remerged is there a form level event which could be used to take actions based on updated and remerged field values without having to add a manual mouse click button to call the code from.

Views

1.1K

Likes

0

Replies

0