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

Spyfox694
Spyfox694
Offline

Badges

Badges
5

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
6

Discussions

Discussions
0

Questions

Questions
2

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Spyfox694
Customize the badges you want to showcase on your profile
Re: Compare two signature fields - Adobe LiveCycle 03-06-2013
Here is published the example filehttps://docs.google.com/file/d/0ByU8H00ILIOKOFZLOU9xVjhGdDg/edit?usp=sharingYou can download it to your local machine, once you access the file,Include your signature on User1 signature field and then use the same certificate to sign the User2 signature fieldThanks for your help!!

Views

148

Likes

0

Replies

0
Re: Compare two signature fields - Adobe LiveCycle 16-05-2013
SantoshI can't make it workThe xfa.signature.enumerate(); included in the postSign event of the second signature field always returns 0 as if no signature were included in the form.Do you have a working example or would you mind to check an example prepared by me?RegardsAriel

Views

148

Likes

0

Replies

0
Re: Compare two signature fields - Adobe LiveCycle 30-04-2013
Hi SantoshI want to disallow the signing, when user tries to use same credential to sign the second signature fieldI know how to obtain specific info of the cert used to sign the signature field 1. For example including the following code in signature field 2 preSign event// Obtain the signature informationvar sigInfo = event.target.getField("mySignatureField1").signatureInfo();// Obtain the certificate:var cert = sigInfo.certificates[0];console.println("signer’s common name: " + cert.subjectCN)...

Views

148

Likes

0

Replies

0
Compare two signature fields - Adobe LiveCycle 29-04-2013
HiI'm developing a form with Adobe Livecycle Designer 9.0 for end users with Adobe Reader 9 or higher The form has two signature fields.At the moment of inserting the second signature I want to validate that the certificate used is not the same certificate used to apply the signature in the first field In case both signature fields are signed with the same certificate, I need to reject/don't allow the second signature Any idea or recommendation about how to implement that? Thanks Ariel

Views

1.4K

Likes

0

Replies

6
Re: Joining numeric fields - Adobe LiveCycle 21-03-2010
Srini, your suggestion fixed the problem but I still don´t understand why the code worked for all numbers except when branch number = 0Could you explain me why the code didn't work under the validate event ?BIG THANKS for your helpRegardsSpyfox694

Views

66

Likes

0

Replies

0
Joining numeric fields - Adobe LiveCycle 21-03-2010
I have 3 different numeric fields that represent the branch, account number and verification digit of a bank accountI have also a text field that under a validate event, joins the values of the 3 numeric fields (separated with a "-" and a "/") using the following codeif (BRANCH.rawValue != null && ACCNUM.rawValue != null && VD.rawValue != null ) { JOINED_FIELD.rawValue = BRANCH.rawValue + "-" + ACCNUM.rawValue + "/" + VD.rawValue ; }If I complete the numeric fields with for exampleBRANCH=11ACCNU...

Views

320

Likes

0

Replies

2