Newport Solutions

Results 8 comments of Newport Solutions

I am also experiencing issue in Android. Setting the Ti.Gesture orientationchange event listener does not trigger after barcode capture has been called. My barcode UI rotates just. After adding Ti.Gesture.addEventListener('orientationchange',...

Yes - Resolved. I got this working in Appcelerator 5.4GA in both Alloy and Classic (which is what I needed) with some tips from @timanrebel . First I updated the...

Clean and rebuild? Did you remove the bundle when you compiled the module?

Yes it worked for me in app/assets On Mon, Sep 12, 2016 at 8:57 AM, Timan Rebel [email protected] wrote: > @kopiro https://github.com/kopiro Not app/assets, but app/platform > afaik. Did it...

I too am hand coding Aaron's entire book (okay a few sneak peeks at the finished src) and ran into this same question. **What is the correct location / directory...

I have all the scanner logic in a function which should have limited scope. This didn't happen previously but I may have had init the scanner with page scope previously...

![image](https://user-images.githubusercontent.com/1017169/146604068-b0249dbd-4558-4673-8906-7eca149e3e6c.png) Same result (success fired 3 times). I'll move the let Scanner = require('ti.scanner'); line to the window scope and give that a try.

Resolved the problem by moving the require to the top of the page and adding the success event before opening the window. let Scanner = require('ti.scanner'); Scanner.addEventListener('success', ScannerOnSuccess ); function...