what exactly is data.text? I assumed its purpose is to take whatever text my barcode scanner picks up from a QR code (i.e. a url) and inputs it into window.open(). i.e. so if I scan a QR code that has url: http://www.google.com , data.text will use that scanned url, thereby allowing window.open() to...
Sorry I've been busy with some other projects. Yes I did, unfortunately it doesn't seem to work :/ Here is a pic, is this what you had in mind? https://d2r1vs3d9006ap.cloudfront.net/s3_images/971192/ScreenShot2013-10-13at11.11.58PM_inline.png?1381666417 https://d2r1vs3d9006ap.cloudfront.net/s3_image...
Hi Katya, Sorry, what I mean is that if the barcode scanner scans a QR code that has the text (or rather the url) http://www.google.com or http://appery.io , I want it to substitute into: window.open('PLACE TEXT FROM QR CODE HERE", "_system", "location=yes") I think the code...
Hi Marina, I take it data.text is meant to grab whatever text is pulled form the QR Code, i.e. http://www.google.com . such that when window.open is used it results in, window.open( http://www.google.com , '_system', 'location=yes'); which should cause a browser to open up and navigate me to google....
if I follow: Component: mobilebarcode1 Event: Success Action: Navigate to Link this results in having to input a static url. Rather, what I want to know is what code do I use to: Acquire the url acquired from a QR code via the barcode scanner Open that url in the default device browser. In short, I ...
Greetings, I'm building a barcode scanner that aims to scan QR Codes. Upon completion of the scan, I want the url to be opened up in a browser. Is there way to do this? So far I've only managed to return the url into the link component, which requires me to click the link to launch the url. Thanks h...