Re: LibURL and TSNet in LC Indy

2020-08-17 Thread Charles Warwick via use-livecode
Hi Tom, If you want to stress test an API using the tsNet library, try adding a: tsNetLibUrlReuseConnection false Before issuing the loadUrl commands to see if that makes any difference. Also note that with tsNet, multiple load URL commands can occur at the same time against a single server,

Re: LibURL and TSNet in LC Indy

2020-08-17 Thread Bob Sneidar via use-livecode
Hey hey! I’m back on the list again. Turns out my account DID get deleted somehow. Bob S > On Aug 17, 2020, at 3:23 PM, Tom Glod via use-livecode > wrote: > > Thank you sir. That worked. > > I will try to diagnose the difference between the 2 libraries in this > scenario.. if only to

Re: LibURL and TSNet in LC Indy

2020-08-17 Thread Tom Glod via use-livecode
Thank you sir. That worked. I will try to diagnose the difference between the 2 libraries in this scenario.. if only to understand why its happening and not get burned elsewhere. Thanks. Tom On Mon, Aug 17, 2020 at 4:41 PM Ralph DiMola via use-livecode < use-livecode@lists.runrev.com>

RE: LibURL and TSNet in LC Indy

2020-08-17 Thread Ralph DiMola via use-livecode
Tom, Your problem with tsNet could be a timeouts. See tsNetSetTimeouts Disable tsNet: dispatch "revunloadlibrary" to stack tsnetliburl Enable tsNet: dispatch "revloadlibrary" to stack tsnetliburl Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net

LibURL and TSNet in LC Indy

2020-08-17 Thread Tom Glod via use-livecode
Hi Folks, I am stress testing a rest api using liburl, I will also do TSNET But when I open my stack in Livecode Indy, the load URL command uses TSNET Whats funny is that half the requests are failing when it tries to use TSNET. With liburl, 100% success rate using LC Community. I am also

autoCapitalizationType in ask dialog

2020-08-17 Thread Dan Friedman via use-livecode
I know you can use mobileSetKeyboardType to set the keyboard, but is it possible to set the autoCapitalizationType for the ask command on mobile? It seems to be defaulting to "none", when you would think a default would be "sentences". -Dan ___

[ANN] This Week in LiveCode 235

2020-08-17 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #235 here: https://bit.ly/3axgp8T This is a weekly newsletter about LiveCode, focussing on what's been going on in and

RE: Browser Widget and Twitter on iOS 13

2020-08-17 Thread Ralph DiMola via use-livecode
I was thinking of doing it just for Twitter but if other sites become stricter I did not want to have to release a new app. I could have done an OTA update of sites that needed this userAgent but I opted for the simple solution. Ralph DiMola IT Director Evergreen Information Services

Re: Scroll a field to a specified line number

2020-08-17 Thread Curry Kenworthy via use-livecode
Michael: > set the vScroll of fld 1 to (60 * the effective textHeight of fld 1) > Clicking the button takes me to line 65, and when I set the > list behaviour to true the button scrolls me to line 69 Bernd: > turn "fixedLineHeight" on for the field And subtract a line. Because when scroll

Re: Scroll a field to a specified line number

2020-08-17 Thread Niggemann, Bernd via use-livecode
Hi Michael, This is because the "fixedLineHeight" is turned off by default since a couple of versions. So you either turn "fixedLineHeight" on for the field or you change your code to something like -- one line set the vScroll of fld 1 to the formattedtop of line 60 of field