Re: Text field in Windows standalone not receiving keyboard focus

2021-01-31 Thread Andrew at MidWest Coast Media via use-livecode
It turns out that this bug was actually another bug manifesting itself. There 
was a rogue browser widget (not visible) hiding in another group on the card 
gobbling up keystrokes on Windows platform. 
https://quality.livecode.com/show_bug.cgi?id=19023 


What’s worse is that the same bug bit me in the ass a year ago too. Fool me 
once, shame on you. 

-Andrew Bell


> 
> Try comparing the properties of a group that works with the one that 
> doesn't. Also compare individual field properties, in particular check the 
> traversalOn, autoHilite, and lockText. That alone wouldn't explain why it 
> appears to fix itself occasionally, but could point to a script that 
> changes one of these properties.
> 
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software | http://www.hyperactivesw.com
> On January 28, 2021 3:33:39 PM Andrew at MidWest Coast Media via 
> use-livecode  wrote:
> 
>> I have an app with a group of fields who are struggling to accept keyboard 
>> input. It seems to just be 1 group of 4 fields on a single card (that has 
>> been noticed). You can click in the field and the blinking I-bar is 
>> inserted, but typing on the keyboard does nothing. Pasting text into any of 
>> these fields seems to unlock the ability to type, as does switching to 
>> another application and switching back, but only until you leave the card 
>> and come back again.
>> 
>> This ONLY happens in executable on Windows, not in IDE and never on Mac 
>> (where I am developing which is why I missed the bug in testing). Once you 
>> unlock 1 of the 4 fields in the group they all unlock until you leave the 
>> card and come back where the problem manifests again.There is another group 
>> of text files (hidden so not on screen the same time as the offending 
>> group) that accepts keyboard input fine without any hacks which points to a 
>> problem with the group. There are no scripts on the field or group itself. 
>> I have already tried a ?focus on nothing? without any luck.
>> 
>> -Andrew Bell
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your 
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: MergExt BLE

2021-01-31 Thread Monte Goulding via use-livecode
Hi Camm

The mergExt externals are supported by LiveCode so the best route for support 
is supp...@livecode.com .

Cheers

Monte

> On 31 Jan 2021, at 1:16 am, General 2018 via use-livecode 
>  wrote:
> 
> Hi,
> 
> Is Monte able to support MergeBLE still or is this now solely with Livecode ?
> 
> Anyone help please .
> 
> Regards Camm

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Which of the current FTP legends should I be using?

2021-01-31 Thread matthias rebbe via use-livecode
Hi PrestoBruce,

just a shot in the dark..., but how did you fill the pData parameter? Did you 
use 

put URL "binfile:..." into pData 

or maybe by mistake 

put URL "file:" into pData

That would explain why the data is corrupted after upload.


-
Matthias Rebbe
Life Is Too Short For Boring Code

> Am 31.01.2021 um 01:19 schrieb PrestoBruce via use-livecode 
> :
> 
> I need to upload a binary file (jpg,pdf,png,etc) to an FTP account.
> I have spent more hours than I care to admit trying to make
> tsNetUploadSync work for me.
> 
> I used the example found at 
> https://lessons.livecode.com/m/4071/l/851756-how-to-upload-a-file-using-ftp
> Which at first blush, worked the first time (once I put in my server 
> path/login credentials etc).
> 
> However, binary files are corrupted. I see nothing in the tsettings array to 
> force binary xfer.
> 
> I get Transfer complete with server response code 226
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Is the DateFormat read only?

2021-01-31 Thread Niggemann, Bernd via use-livecode
Alex Tweedly via 
use-livecode
 Sat, 07 Nov 2020 07:29:15 
-0800

I tested out the TimeZone library with a couple of randomly chosen timezones - 
and they all came back incorrect (i.e. unchanged from UTC even though the 
timezones should have been different). I know that if you pass in a timezone 
that is not in the local machine's database, it will silently return the UTC 
value - but that's not the case here.

I've now looked at it more closely - some of these timezones give the right 
answer, some give the wrong answer - though they are all in the TimeZones() 
list.


Alex,

After you mentioned the problems with the timezone library I had a look and it 
turns out that some of the timezones on the TimeZones() list are deprecated and 
they resolve to UTZ.
I forgot to post that I bug reported the problem in case anyone runs into it.

https://quality.livecode.com/show_bug.cgi?id=23012

Kind regards
Bernd


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: installing and running LC on 'headless' linux server

2021-01-31 Thread David Bovill via use-livecode
Mark that is interesting. I would like to something similar during the Learning 
Cohort coding sprint over the next 12 weeks.

I’d be happy to write up documentation and create a community GitHub project 
around that approach including Nginx config etc?

   
 
   ***
   

   \\   //  
\\\//  ***
  \\\
   |||//   ,
   |__/
,,,//\,,o==o
;

Schedule a meeting using this link.
Writing and media work on Media Garden.

LinkedIn: David Bovill
Twitter: @fortyfoxes
On 31 Jan 2021, 16:07 +, Mark Talluto via use-livecode 
, wrote:
> One more thought came to mind. You should run the executable in the
> background by applying an & as in this example:
>
>
> ./yourCoolExecutable -ui &
>
>
> If you run the executable from terminal and you do not apply the & the
> executable will die as terminal quits.
>
>
> Best regards,
>
>
> Mark Talluto
>
> livecloud.io
>
> nursenotes.net
>
> canelasoftware.com 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: installing and running LC on 'headless' linux server

2021-01-31 Thread Mark Talluto via use-livecode
One more thought came to mind. You should run the executable in the
background by applying an & as in this example:


./yourCoolExecutable -ui &


If you run the executable from terminal and you do not apply the & the
executable will die as terminal quits.


Best regards,


Mark Talluto

livecloud.io

nursenotes.net

canelasoftware.com 
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode