2

我在配置我的 Wacom 数位板签名时遇到问题。我做了这个例子没有问题,但是当我把它集成到我的程序中时,它坏了。

问题是,当我单击“签名”按钮时,需要 5-10 秒才能显示签名捕获。在此之后,它运行正常。

我没有对示例进行太多更改;这是我修改的代码的一部分:

(function($) {
    $(function() {
        var boton_firma = $('.captura_wacom');
        boton_firma.prop('disabled', false);
        boton_firma.on('click', init_firma);
    });
})(jQuery);

function init_firma() {
    var signatureForm = new SignatureForm($(this).parent().find('.fichero_firma').get(0), $(this));
    signatureForm.connect();
}

当我暂停该过程时,它总是停止在来自 wacom 的名为BigInt.js.

4

1 回答 1

2

最后我注释掉了demobuttons.js(wacom示例)的一部分,现在运行正常,无需等待

在下面的示例中,该行标记为 ( <---):

try {
    if (m_usingEncryption) {
        //m_tablet.startCapture(0xc0ffee); <---
    }
} catch (e) {
    m_usingEncryption = false;
}
// Enable the pen data on the screen (if not already)
m_tablet.setInkingMode(0x01);
于 2016-05-27T15:17:21.100 回答