user4516606
user4516606

Reputation: 153

CodeReader - Smartface

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

Answers (1)

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

Related Questions