Typing Text Into a Locked Field -- Win Surface

2021-04-20 Thread Peter Bogdanoff via use-livecode
Hi, I have a customer (in China) who is reporting that she is able to type text into a locked field on a Windows Surface device. Context: a LC 9.6.1 runtime application installed on a Windows Surface computer (appears to be a laptop). Field settings: lockText = true transversalOn = true

Re: What exactly does "put" do on Server?

2021-04-20 Thread Mark Wieder via use-livecode
On 4/20/21 6:01 PM, Richard Gaskin via use-livecode wrote: Postman shows a single reply to the client from Apache. strace on the server shows each "put" implemented at the system level as a write to stdout. So it looks to me like Apache buffers writes it receives and sends all of it to the

Re: What exactly does "put" do on Server?

2021-04-20 Thread Richard Gaskin via use-livecode
Postman shows a single reply to the client from Apache. strace on the server shows each "put" implemented at the system level as a write to stdout. So it looks to me like Apache buffers writes it receives and sends all of it to the client in one go, with a header that accurately accounts

Re: AWSS3 Redux

2021-04-20 Thread Tom Glod via use-livecode
Mark, Check the comments in the bug report for this ...and the new library file is attached by Monte. I agree...its handy + more. On Tue, Apr 20, 2021 at 4:58 PM Mark Clark via use-livecode < use-livecode@lists.runrev.com> wrote: > The new ability to add an arbitrary S3 endpoint is pretty

Re: AWSS3 Redux

2021-04-20 Thread Mark Clark via use-livecode
The new ability to add an arbitrary S3 endpoint is pretty handy. Since I don’t think it’s made its way into an RC just yet, I was wondering if anyone has built a standalone with that feature enabled. So far my attempts have failed. Is there a knob to turn that I should know, but don’t? I have

Re: What exactly does "put" do on Server?

2021-04-20 Thread Tom Glod via use-livecode
Following, I've wondered this, but never had enough motivation to test it. On Tue, Apr 20, 2021 at 4:00 PM Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Normally, HTTP is used for request-reply patterns, where the server > receives the request, does some processing to

What exactly does "put" do on Server?

2021-04-20 Thread Richard Gaskin via use-livecode
Normally, HTTP is used for request-reply patterns, where the server receives the request, does some processing to it, and then sends back the reply. In a faceless environment like Server, "put" goes to stdout, yes? So when we say "put tData", then the contents of tData are handed back to

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread Klaus major-k via use-livecode
Hi all, FYI, I created a report: Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: rant: truewordOffset

2021-04-20 Thread Mark Wieder via use-livecode
On 4/20/21 9:12 AM, Mark Waddingham via use-livecode wrote: Works fine here too: set the wholeMatches to true put trueWordOffset("BT", "foo btn")   => 0 set the wholeMatches to false put trueWordOffset("BT", "foo btn")   => 2 Warmest Regards, Mark. P.S. Remember wholeMatches is a

Re: rant: truewordOffset

2021-04-20 Thread Mark Waddingham via use-livecode
On 2021-04-20 17:04, Mark Wieder via use-livecode wrote: On 4/20/21 6:00 AM, Niggemann, Bernd via use-livecode wrote: Mark Wieder wrote You can't just say put truewordOffset("font", tText) into tOffset because it might encounter "fontTable" first. If I set wholematches to true it works for

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread J. Landman Gay via use-livecode
There's a thread here on the list somewhere when I had the same problem. I did need to add some pixels to the height of the scroller. I wonder if formattedHeight is miscalculated on mobile. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: Enhancement request: show the execution contexts in debugger UI

2021-04-20 Thread J. Landman Gay via use-livecode
There's a popdown button at the top left of the editor that shows the execution contexts. Do you need more information than that? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On April 20, 2021 5:49:28 AM Andre Garzia via use-livecode

Re: rant: truewordOffset

2021-04-20 Thread Mark Wieder via use-livecode
On 4/20/21 6:00 AM, Niggemann, Bernd via use-livecode wrote: Mark Wieder wrote You can't just say put truewordOffset("font", tText) into tOffset because it might encounter "fontTable" first. If I set wholematches to true it works for me Unfortunately not here. Even with wholematches true

Re: Android splash and icon

2021-04-20 Thread Craig Newman via use-livecode
Security stuff aside, the comedian Gary Gulman asserts that the phone is the least used app on his phone. Craig > On Apr 19, 2021, at 2:20 PM, J. Landman Gay via use-livecode > wrote: > > It's unlikely if the phone makes no calls, doesn't download any apps, and has > location, targeted ads,

Re: rant: truewordOffset

2021-04-20 Thread Niggemann, Bernd via use-livecode
Mark Wieder wrote You can't just say put truewordOffset("font", tText) into tOffset because it might encounter "fontTable" first. If I set wholematches to true it works for me Kind regards Bernd ___ use-livecode mailing list

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread e.beugelaar--- via use-livecode
I am still wondering why layout issues anno 2021 has to be programmed manually for all devices. It is nonsense and don't make sense. I started programming with Clipper 5.x in text base environments and even in that period we had ClipDAS, i was co-writer of it, to draw virtual screens. Is it

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread Klaus major-k via use-livecode
Hi Brian, > Am 20.04.2021 um 13:48 schrieb Brian Milby via use-livecode > : > > I think that is just a bug. wonderful! :-( > See here for workaround idea: > https://github.com/Himalayan-Academy/Siva-Siva-App/blob/nightly/behaviors/behavior_mobileScroller.livecodescript > Basic idea is to

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread Brian Milby via use-livecode
I think that is just a bug. See here for workaround idea: https://github.com/Himalayan-Academy/Siva-Siva-App/blob/nightly/behaviors/behavior_mobileScroller.livecodescript Basic idea is to add 60 or so px to content region and then adjust a bit when not at the top. Requires adjustments in

native scroller cuts off parts of last line in a field

2021-04-20 Thread Klaus major-k via use-livecode
Hi all, see subject... I have a field, I grouped it and in the IDE I show the vscrollbar of that group. I added two extra EMPTY lines at the end of that field AFTER the last line, and in the IDE I can read the last line and see the bit of white space below. Then I created a native scroller

Re: Enhancement request: show the execution contexts in debugger UI

2021-04-20 Thread Alex Tweedly via use-livecode
I will join in to support (as soon as I remember which password gives me access). But I think it would be more useful to have this displayed as a "value" palette - similar to what you get when you double-click a variable - rather than another tabbed pane. Alex. On 20/04/2021 11:46, Andre

Enhancement request: show the execution contexts in debugger UI

2021-04-20 Thread Andre Garzia via use-livecode
Hi Folks, I’ve just submit an enhancement request to add a pane to the script editor to show the execution contexts in the debugger UI. I hope others feel like this is a good enhancement and will join in to support it. https://quality.livecode.com/show_bug.cgi?id=23175