B4A Library Signature Capture Dialog

This is a wrap for this github Project.


SignCap
Author:
DonManfred (wrapper)
Version: 1
  • SignatureDialogBuilder
    Events:
    • onSignatureEntered ( As )
    • onSignatureInputCanceled ( As )
    • onSignatureInputError (error as String As )
    Methods:
    • IsInitialized As Boolean
    • Show (EventName As String, title As String, positive As String, negative As String, destPath As String, destFilename As String)


If you want to donate for my work building the wrapper you can do it here:


sigcap.gif
 

Attachments

  • SignCapV1.0.0.zip
    14.2 KB · Views: 688
  • SignCapEx.zip
    13.4 KB · Views: 682
Last edited:

rboeck

Well-Known Member
Licensed User
Longtime User
I have found an small problem in the sample code: instead of "Signature.jpeg" it should bei "Signature.png" in line 54.
 

imbault

Well-Known Member
Licensed User
Longtime User
I just need that kind of component, but one question @DonManfred, how is it possible to capture the signature without the x and the bottom line?

upload_2016-4-20_19-39-40.png


Many thanks
 

imbault

Well-Known Member
Licensed User
Longtime User
yep colors.xml :

<?xml version="1.0" encoding="utf-8"?>
<resources>

<color name="sig__default_background">#10FAFAFA</color>
<color name="sig__default_baseline">#DECC0000</color>
<color name="sig__default_signature">#FF888888</color>

</resources>
 

imbault

Well-Known Member
Licensed User
Longtime User
Just made a donation Don

Just a small question, how to setup transparency with those 2 xml?
 

DonManfred

Expert
Licensed User
Longtime User
Thank you very much! Just received the paypal-notification :)
Just a small question, how to setup transparency with those 2 xml?
two xml was only the info where to find. But in fact is is only one to change. colors.xml
#DECC0000
Does THIS help???
#AARRGGBB
#^^ Alpha

In fact: it must be #FFCC0000 or #00CC0000 (i´m always not sure :D)
 
Top