Re: get URL results in tsneterr(6) on Android, previously worked ok

2020-06-28 Thread J. Landman Gay via use-livecode
I think that's a DNS error. One of my testers got that once and later it stopped by itself. I think she was using her ISP's DNS resolver. I'm not sure there's much we can do about it, it happens after the request is sent, but maybe someone else knows more. -- Jacqueline Landman Gay | jac...@hy

get URL results in tsneterr(6) on Android, previously worked ok

2020-06-28 Thread Alan Stenhouse via use-livecode
Hi all Am re-building an app that's been running fine for over 2 years now and when attempting to get a URL I always get the error "tsneterr: (6)" contained in it with "could not resolve host" as the result. When I try the same code in the IDE it works as expected. I didn't previously include

Re: Animation Engine: speed tips

2020-06-28 Thread Alex Tweedly via use-livecode
Hi there submariner :-), can you just confirm the licensing of AE ? The demo code says it is dual Commercial & GLPL3 - but GitHub says it is Public Domain. Can you just say which of those is correct ? Thanks Alex. On 28/06/2020 10:27, Malte Pfaff-Brill via use-livecode wrote: Hi, off it.

Re: Navigator won't go away!

2020-06-28 Thread Geoff Canyon via use-livecode
Just came across this -- sorry for the frustration. I'll reach out to the LC crew about either updating or removing Navigator. gc On Fri, Mar 27, 2020 at 12:51 AM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > OK Sorry for the noise. I see now that the Files & Memory/User

Re: Quick question: player object callbacks still working?

2020-06-28 Thread Martin Koob via use-livecode
Hi I have an app that uses player callbacks and I am now using LC 9.6 to work on it and the callbacks work fine. The callbacks, duration, currentTime and other movie time properties are in timescale which is intervals/second as you said. I just created a small stack and did a basic test of ca

iOS sharing extensions: an important market for Livecode?

2020-06-28 Thread David Bovill via use-livecode
Not sure what people think, but for my part one of the main itches I have for creating mobile apps in Livecode is to figure out more advanced ways of processing data that is generated by all those mobile apps I have installed on my phone. So I REALLY want tone able to share from podcast apps, an

Re: Animation Engine: speed tips

2020-06-28 Thread David Bovill via use-livecode
OK - will take a look. I suspect it is due to too many messages being sent due to the sort of line that is drawn when you create a curve by hand…. On 28 Jun 2020, 10:28 +0100, Malte Pfaff-Brill via use-livecode , wrote: > Hi, > > off > it. might be worth digging into AEs source and change the han

Re: Quick question: player object callbacks still working?

2020-06-28 Thread David Bovill via use-livecode
The message is not being sent. I set the callbacks of the payer and test it with: set the callbacks of player 1 to "0,soundNotes" command soundNotes   — does not get sent   put the params end soundNotes on currentTimeChanged theInterval   p

Re: Animation Engine: speed tips

2020-06-28 Thread Malte Pfaff-Brill via use-livecode
Hi, off it. might be worth digging into AEs source and change the handlers from using cProps to local variables. Also, there might be unnecessary instances. of locking / unlocking screen that. should be refactored in AE. If anyone is going to take that up I’d be happy iff you shared your patc