Lack of Mobile Player callbacks and subtitles problem

2019-02-17 Thread Frans Schoffelen via use-livecode
Hi all. Anybody been able to get time-locked subtitles for mobile video players that worked in the post-QT era ? My searches have not produced anything. Since there are no callbacks from “MobileCreateControl Player” anymore to kick subtitles in a field from a list at a given time ( like the

LC902 and LC901 Crash with Answer

2019-02-17 Thread JJS via use-livecode
Hi, anyone had this before? with LC902 community on win10 64bits When i put 25 variables into a variable like this: put "id=" & tId & "=" & tN & "=" & tA ..and so oninto varSendData half of the variables are ---> encrypted--->base64encoded--->URLencoded then answer varSendData

Re: LC902 and LC901 Crash with Answer

2019-02-17 Thread Alex Tweedly via use-livecode
The encoded elements should be OK, if you base64encode() all encrypted or binary data. Sounds like it could be a bug. But what I'd try is writing varSendData to a local file, and doing answer "the data is now in " to see if that works, and to see if there is anything dubious in the

Re: Need crash course in Dropbox library

2019-02-17 Thread pink via use-livecode
the phxDropbox library is for v1 of the Dropbox API, which has been deprecated what I need is to get a handle of the upload session commands, how do I properly break the file data into seperate sessions, and how do i determine the offset value Matthias Rebbe via use-livecode wrote > Don't know

Re: LC902 and LC901 Crash with Answer

2019-02-17 Thread J. Landman Gay via use-livecode
That sounds more like a hang rather than a crash, which means LC is involved in a lengthy process that is forbidding any other actions. The answer dialog tries to create html text in order to support text styles. My guess is that it's trying to interpret the random characters in the base64

Re: LC902 and LC901 Crash with Answer

2019-02-17 Thread Alex Tweedly via use-livecode
That shouldn't be a problem. OP said he was URLencoding after the base64encoding, so all the random HTML characters should be 'protected'. Alex. On 17/02/2019 17:43, J. Landman Gay via use-livecode wrote: That sounds more like a hang rather than a crash, which means LC is involved in a

Re: LC902 and LC901 Crash with Answer

2019-02-17 Thread JJS via use-livecode
That's a good idea too. Thanks Alex Jerry Op 17-2-2019 om 13:18 schreef Alex Tweedly via use-livecode: The encoded elements should be OK, if you base64encode() all encrypted or binary data. Sounds like it could be a bug. But what I'd try is writing varSendData to a local file, and doing

Re: LC902 and LC901 Hang with Answer

2019-02-17 Thread Richard Gaskin via use-livecode
Sphere(Jerry) wrote: > anyone had this before? with LC902 community on win10 64bits > > When i put 25 variables into a variable like this: > > put "id=" & tId & "=" & tN & "=" & tA ..and so > oninto varSendData > > half of the variables are ---> > encrypted--->base64encoded--->URLencoded

RE: LC902 and LC901 Crash with Answer

2019-02-17 Thread Ralph DiMola via use-livecode
I've seen this when you try too display much data in an answer(or ask). You can usually get out of it if you key a "Return"(or two-tree). At that point save and restart IDE(not usually necessary but "the ctrl S"s get more frequent for sure). I did not report this because I was displaying an

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-17 Thread JJS via use-livecode
Hi everyone, i guess Ralph is correct as it probably too much data to display. If it is just one variable with encr-->base64enc-->URLenc then there seems to be no problem. That's probably why have not seen this before, but i used the answer with these 25 variables also before and maybe it

Re: Lack of Mobile Player callbacks and subtitles problem

2019-02-17 Thread Peter Bogdanoff via use-livecode
Does mergAVPlayerCreateBoundaryTimeObserver help you? Peter Bogdanoff > On Feb 17, 2019, at 4:39 AM, Frans Schoffelen via use-livecode > wrote: > > > Hi all. Anybody been able to get time-locked subtitles for mobile video > players > that worked in the post-QT era ? My searches have not

Re: Need crash course in Dropbox library

2019-02-17 Thread Mike Kerner via use-livecode
Hey pink Yes, you are just going to put 150MB at a time into the pData parameter and ship it. I have not uploaded any binary files, just encoded text files, so you may have to fiddle with encoding to make sure you don't get into any trouble. You should be able to open/read the files using put url

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-17 Thread Richard Gaskin via use-livecode
JJS wrote: > i guess Ralph is correct as it probably too much data to display. What is the total length of the data? And what happens when you output it to a field in your stack rather than the field in the Answer dialog? -- Richard Gaskin Fourth World Systems Software Design and