79715183

Date: 2025-07-25 19:49:28
Score: 1
Natty:
Report link

For anyone else who stumbles on this question, this is the method Topaz's documentation mentions here: https://www.topazsystems.com/software/download/sigweb.pdf

function IsSignaturePadConnected() {
    SetTabletComTest(false);
    SetTabletState(0, tmr);
    SetTabletComTest(true);

    if (tmr == null) {
        tmr = SetTabletState(1, ctx, 50);
    } else {
        SetTabletState(0, tmr);
        tmr = null;
        tmr = SetTabletState(1, ctx, 50);
    }
    if (GetTabletState() === '0') {
        //Cannot locate signature pad
        SetTabletState(0, tmr);
        SetTabletComTest(false);
        return false;
    } else {
        //Located signature pad
        SetTabletComTest(false);
        return true;
    }
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Dawson