Re: Browser Widget on Android

2018-07-16 Thread J. Landman Gay via use-livecode
I got your stack to work last week but my email to you bounced and then I got distracted. I'll get it to you tomorrow when I'm at the Mac. If anyone on the list is interested I'll post a link here too. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperac

Re: Browser Widget on Android

2018-07-16 Thread Brian Milby via use-livecode
I can't do the testing right now, but I think that your "portrainUI" handler is causing the issue. In there you restrict the orientations to portrait only. If you are doing that to force the device to rotate, you probably need to add another one at the end that unlocks the device so that it can b

Re: Browser Widget on Android

2018-07-16 Thread Sannyasin Brahmanathaswami via use-livecode
9.0.1 RC1 I don't think this is working, OR, I don't know how it works. go stack url "http://wiki.hindu.org/uploads/Tester-Landscape-TsNet.livecode"; (you have seen in before) I can't get the browser (widget "body) to change its rect, no matter what I do. I have a support request in on my bus

Re: Browser Widget on Android

2018-07-16 Thread J. Landman Gay via use-livecode
As long as the app is build with a splash image that matches the device resolution (on iOS), then it should work for all. Android doesn't use this. The stack is always sized to the screenRect and resolution is calculated automatically. (I thought the same was true for iOS, but it's been a whil

Re: Browser Widget on Android

2018-07-15 Thread Brian Milby via use-livecode
Thanks for doing a test. I'll need to get some videos together to really show what it does. I'll need to wait until after LCG though... I'm such a procrastinator :) The stack was built as a proof of concept that the GM and PM could work effectively on mobile. The stack works fully on iOS. From

Re: Browser Widget on Android

2018-07-15 Thread J. Landman Gay via use-livecode
I tried your test stack but I don't think I know how to use it. The existing URL in the browser widget (your site) returns an error: Webpage not available, net::ERR_CACHE_MISS. I changed it to google.com and got the same thing. At any rate, changing the fullscreenMode re-wrapped the text in th

Browser Widget on Android

2018-07-15 Thread Brian Milby via use-livecode
I have a question/small favor to ask someone that develops on Android. When you place a browser widget on a stack and deploy to iOS, the content inside the widget is always at native resolution. If you use a resize handler or the GM to position the rect and a FullScreenMode of noScale, everything

Subject: Re: Local File in Browser Widget on Android - Fail

2017-08-11 Thread Dan Friedman via use-livecode
Sannyasin, Thank you for the reply! I have discovered that it’s not the local path the is the issue. If I do this, I see “123” in the browser: put “123” into url ("file:" & specialFolderPath("documents") & "/map.html") set the url of widget "Browser1" to ("file:" & specialFolderPath("d

Re: Local File in Browser Widget on Android - Fail

2017-08-10 Thread Sannyasin Brahmanathaswami via use-livecode
make sure your slashes are all correct. on iOS and desktop are forgiving with double// in URLs; but android is not.. .this bit me many times file:/somepath/somefile.html works file://somepath/somefile.html doesn't So If you have path setters here and there, one needs to follow some conv

Local File in Browser Widget on Android - Fail

2017-08-10 Thread Dan Friedman via use-livecode
I’m having a problem loading a local file on Android in the Browser Widget in LC 8.1.5. I am experiencing what is described in bug 19036. But, bug 19036’s status is “Resolved” in version 8.0.0. So, is something else up? Anyone have any insight? -Dan __