Just a quick mention, In the Neon help file the following code
Hello Scan
function doScanDecode(data, source, eventtype)
{
if(eventtype != 'Decode')
return;
var divEl = getElementById('divOutput');
divEl.innerHTML = 'Hello ' + data + 'From: ' + source;
}
This is my first Neon application!
Please scan a barcode...
Should contain the word document.
Hello Scan
function doScanDecode(data, source, eventtype)
{
if(eventtype != 'Decode')
return;
var divEl = document.getElementById('divOutput');
divEl.innerHTML = 'Hello ' + data + 'From: ' + source;
}
This is my first Neon application!
Please scan a barcode...
1 Replies
Thanks, that'll be fixed in the release.