Re: Trouble with Android Keystore alias/password

2018-11-08 Thread J. Landman Gay via use-livecode
Did you try to paste the password? It doesn't work, you have to type it very slowly...one...letter...at...a...time. Pretend you never learned to touch type. Who knows what it's doing in between keystrokes. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hy

Trouble with Android Keystore alias/password

2018-11-08 Thread Sannyasin Brahmanathaswami via use-livecode
It been a long time since I built a standalone for Google Play. In the SA settings panel I choose Sign with My Key -- browser for the ###.keystore file -- it loads fine save the stack and build to standalone Please provide alias for the keystore -- ## enter it -- I ha

Re: [Hacktoberfest] Improving Hi-DPI support on Windows as a Community

2018-11-08 Thread Tom Glod via use-livecode
Thanks everyone for your efforts on this and other bugs. On Tue, Nov 6, 2018 at 12:10 PM, Trevor DeVore via use-livecode < use-livecode@lists.runrev.com> wrote: > On Mon, Nov 5, 2018 at 11:15 PM Trevor DeVore > wrote: > > > On Thu, Oct 11, 2018 at 10:40 AM Trevor DeVore < > li...@mangomultimedia

Re: How to tell if the page displayed in the Browser widget has scrolled

2018-11-08 Thread Tom Glod via use-livecode
Hermann you are a rockstar. I will use this method also. Thank you. On Thu, Nov 8, 2018 at 10:55 AM, hh via use-livecode < use-livecode@lists.runrev.com> wrote: > James. > > You are looking for difficulties that are not present. > > A. Do once: > > A1. put into widget's or card's script > (t

Re: SSL with HTTPD Library?

2018-11-08 Thread Andre Garzia via use-livecode
Stephen, If this is to be accessed from a server as in, you have a server running some LC code that will reply to whatever needs to make that request the you can use a "reverse proxy" in front of the LC server process such as caddy or even just point a cloudflare instance to it and point your doma

Re: How to tell if the page displayed in the Browser widget has scrolled

2018-11-08 Thread hh via use-livecode
James. You are looking for difficulties that are not present. A. Do once: A1. put into widget's or card's script (this is a javaScriptHandler): on jsNotify v put the seconds &": "& v into fld "info" -- or your action end jsNotify A2. From a button or msg (or use the property inspector): put

Re: How to tell if the page displayed in the Browser widget has scrolled

2018-11-08 Thread James Hale via use-livecode
Many thanks Hermann. I can follow this (logic wise) as well as the forum links you provided. But I didn't quite follow the implementation. For now I will put it on the "it would be nice but not required" list, else I will not finish. And yes, I will ask on the forum should I have a potentially l

Re: How to tell if the page displayed in the Browser widget has scrolled

2018-11-08 Thread hh via use-livecode
The following works for me. Write this code into a variable or a field: window.onscroll = function() { if (window.innerHeight + window.pageYOffset >= document.body.offsetHeight) liveCode.jsNotify('I am at the bottom'); }; (a) Then script: do in widget "browser" if you can't control the htmltext