Wacom stu-430 签名采集速度太慢
Wacom stu-430 signature is captured too slowly
我在配置 Wacom 数位板签名时遇到问题。我做的例子没有问题,但是当我把它集成到我的程序中时,它就坏了。
问题是,当我单击 "Sign" 按钮时,需要 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
.
的 js 包含中停止
最后我把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);
我在配置 Wacom 数位板签名时遇到问题。我做的例子没有问题,但是当我把它集成到我的程序中时,它就坏了。
问题是,当我单击 "Sign" 按钮时,需要 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
.
最后我把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);