Reputation: 153
Works codeReader object In the new version of smartface? I have two object on the page. Image and codereader. On load image throws alert but on load codereader not
function Page1_CodeReader1_OnShow(e){
alert("works!");
}
function Page1_Image1_OnShow(e){
alert("works!");
}
Upvotes: 0
Views: 97
Reputation: 777
In the new version of Smartface(4.5.0), there is plugin support. And codereader is no more a ui object, it is a plugin. The one you are trying is the ui codereader object which is not supported anymore.
You can check the below document for more information: http://www.smartface.io/developer/guides/plugins/codereader/
Upvotes: 1