mobileControlDo - player

2020-12-10 Thread Sannyasin Brahmanathaswami via use-livecode
This is “lean”. ~~"begin seeking forward" only on iOS But Android are we going to use - *time*: The milliseconds from the beginning. To build, by hand, something that will “play forward/backward” because of the time? So we are going use a Livecode options to make time ➢ 00:12:20 -

Re: mobileControlDo

2015-04-23 Thread Ralph DiMola
la IT Director Evergreen Information Services rdim...@evergreeninfo.net Original message From: Pierre Sahores Date:04/23/2015 16:14 (GMT-05:00) To: How to use LiveCode ,LiveCode Developer List Subject: Re: mobileControlDo Hi Mark, Many thanks for your helpful gui

Re: mobileControlDo

2015-04-23 Thread Pierre Sahores
Hi Mark, Many thanks for your helpful guidance ! Understood : mobileControlDo returns the last line of the executed javascript « as this » , so all works as expected with : on mouseup -- mobileControlCreate "browser", "Browser1" inited in the p

Re: mobileControlDo

2015-04-22 Thread Mark Waddingham
Hi Pierre, There is definitely code in the engine to feed the (string) result from the JS script back to 'the result' variable. I've just tried (on iOS): mobileControlDo sBrowserId, "execute", "1+1" answer the result For me at least, this results in an

Re: mobileControlDo

2015-04-22 Thread Pierre Sahores
ession? +1 About my test (yet abandoned), i came to conclusion that : 1.- mobileControlDo is a command witch works perfectly to launch any kind of javascript snippets ; 2.- mobileControlDo is not intended to provide to LC any return value ; The way to go to get back mobileControlDo javascript sn

Re: mobileControlDo

2015-04-22 Thread David Bovill
he mobile browser > instance said, at some point, RunRev... > > > Le 22 avr. 2015 à 04:19, Mike Bonner a écrit : > > > > Ah k. I had just looked at this thread( > > > http://forums.livecode.com/viewtopic.php?f=53&t=11730&p=55347&hilit=mobilecontroldo#p5

Re: mobileControlDo

2015-04-22 Thread Pierre Sahores
No shared clipboard between the js instance and the mobile browser instance said, at some point, RunRev... > Le 22 avr. 2015 à 04:19, Mike Bonner a écrit : > > Ah k. I had just looked at this thread( > http://forums.livecode.com/viewtopic.php?f=53&t=11730&p=55347&hili

Re: mobileControlDo

2015-04-21 Thread Mike Bonner
Ah k. I had just looked at this thread( http://forums.livecode.com/viewtopic.php?f=53&t=11730&p=55347&hilit=mobilecontroldo#p55347 ), and (if I understand what you're asking) it seemed to be working at some point in the past. Unreliably, but still working. Hopefully someone can h

Re: mobileControlDo

2015-04-21 Thread Pierre Sahores
Don’t work there. The problems seems to rely on the fact that mobilecontroldo acts as a pure command (no return value at all in it or in the result)… Thanks anyway, Pierre > Le 22 avr. 2015 à 00:35, Mike Bonner a écrit : > > You do actually have a 'return' in your js c

Re: mobileControlDo

2015-04-21 Thread Mike Bonner
You do actually have a 'return' in your js code right? You might test with something simple like function donothing() { return 10; } After the mobilecontroldo it the result should be 10. If you ARE returning a value, you might simplify and make sure you aren't returning n

Fwd: mobileControlDo

2015-04-21 Thread Pierre Sahores
Hi Friends, I can’t find any way to get the returned value (nor as it or the result) after executing the following line of code : MobileControlDo "Browser1", "execute", fld "js1" where fld "js1" acts as a simple javascript statements container. Do i

mobileControlDo

2015-04-21 Thread Pierre Sahores
Hi Friends, I can’t find any way to get the returned value (nor as it or the result) after executing the following line of code : "Browser1", "execute", fld "js1" where fld « js1" acts as a simple javascript statements container. Do i miss something or