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

Papote13
Papote13
Offline

Badges

Badges
8

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
20

Discussions

Discussions
0

Questions

Questions
10

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Papote13
Customize the badges you want to showcase on your profile
Re: Add multiple signatures in page - Adobe LiveCycle 03-07-2018
I thought so. When printing the form it doesn't display any warning and both digital signatures appear.I can only sign on my PC since I set up the digital signature there. I have tried with no success to add a certificate on our CA server so anyone on our network can sign, but have been unsuccessful.

Views

478

Likes

0

Replies

0
Add multiple signatures in page - Adobe LiveCycle 02-07-2018
I have Life Cycle Designer 8.0 and I'm trying to add two signature fields on the same page. I can include both fields fine, but when signing the second one, the first one gives the warning "...there have been subsequent changes to the document". I guess the error makes sense. But is there a way to workaround it?

Views

1.0K

Likes

0

Replies

2
Validate empty exclusion group - Adobe LiveCycle 07-05-2012
I have an exclusion group with an on empty message set. I have a print button with the following javascript code to check if any field with an empty message isn’t set: var txt = topmostSubform.execValidate(); if (txt == true){ xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 1, 0, 0, 0); }I have noticed that even if I select a radio button from the exclusión group I can’t printand shows the empty message for that field.I am using Adobe LiveCycle Designer 8.0 and Adobe Acrobat 8.0 Pro...

Views

787

Likes

0

Replies

1
Populate interactive form HTML - Adobe LiveCycle 21-11-2011
I have an interactive form that I created using Adobe LiveCycle Designer 8.0. I am trying to populate these fields from an HTML form. After many trial and errors, I came across this site that says that FDF is not compatible with LiveCycle. I am looking for another alternative to be able to fill the PDF form via PHP 4. Preferably, an open source solution.

Views

762

Likes

0

Replies

0
Re: Validate month number as text - Adobe LiveCycle 27-09-2011
This works fine, except that I am not getting the app.alert mesage at anytime, except my "Empty Message" and only after I entered something in the field.

Views

289

Likes

0

Replies

0
Validate month number as text - Adobe LiveCycle 27-09-2011
I am trying to validate a text field so that it only accepts the month in numerical form with a leading zero if less than 10. The data type is Text Field, the value is “User Entered - Required” and the Validation pattern is 99.I have the following code:----- topmostSubform.Page1.DateMM::exit: - (JavaScript, client) -------------------- if (this.isNull) { xfa.host.messageBox("Field cannot be blank!");} else { if (xfa.event.commitKey == 2){ if (this.rawValue >= "01" && this.rawValue <= "12") { xfa...

Views

866

Likes

0

Replies

3
Re: Required field loop - Adobe LiveCycle 22-09-2011
Changing the type to "User Entered - Optional" doesn't make a difference as the message comes from the code itself.I am not using a submit button and don't really want to rely on the user actually hitting the button, which most won't.At the moment I just disbaled the statement $host.setFocus ($.name), but since Acrobat doesn't really enforce that it be actually required it would just display the messagebox.

Views

298

Likes

0

Replies

0
Required field loop - Adobe LiveCycle 21-09-2011
I have two fields: field1 and field2. Both are set as “User Entered - Required”. I am trying to enforce that they cannot be empty. I made the following routine, but when I leave field1 empty and click on the field2 (which is also empty) I get stuck in an infinite loop of the same error message from both fields.Using FormCalc on the Exit event:if ($.isNull) then xfa.host.messageBox("Field cannot be blank!") $host.setFocus ($.name)endif

Views

739

Likes

0

Replies

2
Duplicate Pattern Message - Adobe LiveCycle 20-09-2011
I have a Date/Time Field with validation pattern: MM/DD/YYYY. When I enter text I get the Validation Pattern Message twice.

Views

464

Likes

0

Replies

0
Re: Validation: Set Focus same field - Adobe LiveCycle 20-09-2011
Tried this and worked.$host.setFocus ($.name)Thanks.

Views

242

Likes

0

Replies

0
Likes given to