Camera Component Showing OK and Cancel Options in Mobile for Barcode Scanner
I implemented Barcode Scanner Logic in My Vbcs Application where i used Camera Component as a scanner and on Camera event i wrote below code to get the Value from Barcode
const createImageBitmap1 = await window.createImageBitmap(files[0]);
const barcode2 = await Actions.barcode(context, { image: createImageBitmap1, });
$variables.Number = barcode2.rawValue;
When i scan through mobile it asking me to capture manully and it showing OK and Cancel buttons
Instead of that can we implement directly like when we place barcode infront of scanner automatically it should scan and assign the value to variable
i see this is possible but i don't know how to implement
Tagged:
0