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: Trying to use the Segmented Control

2020-12-10 Thread R.H. via use-livecode
@ Ralf Bitter Dear Ralf, I downloaded your segmented control from: https://github.com/revig/universal-button-widget/releases/tag/1.0.1 and I installed the widget using the Extension Manager in the IDE. It looks very nice. Exactly what allows control and even change the behavior. First time users

Re: Will Browser widget ever work on Linux?

2020-12-10 Thread Tom Glod via use-livecode
Thanks for all the inputs gentlemen I agree on the need for cross platform embedded browser support. Will LC use another embedded browser for the mac? So I guess there are more questions than answers here in terms of a 3 platform solution. I have my first ssd sitting in the box, and once i

RE: return "error" code from standalone compile

2020-12-10 Thread Douglas A. Ruisaard via use-livecode
I use AUTOHOTKEY... as a fast, dirty way to "get stuff done" when I'm either too lazy or too rushed to do a "quality" job with Livecode. It has a command called "Run" & "Runwait" ... which returns the calling program's (Livecode executable, in this case) return code into a predefined variable c

Re: export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
Hi Mark, > Am 10.12.2020 um 15:25 schrieb Mark Waddingham via use-livecode > : > > On 2020-12-10 13:55, Klaus major-k via use-livecode wrote: >> Hi friends, >> ## Doing this again fixes the inconvenience and I can continue: >> put dasObjekt() into tObject >> ... >> Funky, funky!? > Nope - not fu

Re: export snapshot woverwrites variable?

2020-12-10 Thread Mark Waddingham via use-livecode
On 2020-12-10 13:55, Klaus major-k via use-livecode wrote: Hi friends, ## Doing this again fixes the inconvenience and I can continue: put dasObjekt() into tObject ... Funky, funky!? Nope - not funky. Container syntax can be either a variable (with array indices or without), or an object ch

Re: export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
Hi all, > Am 10.12.2020 um 15:08 schrieb Brian Milby via use-livecode > : > > What about using (tObject)? Since tObject is a container itself, the export > put the data in the container directly instead of the referenced container? > Sent from my iPhone >> On Dec 10, 2020, at 8:56 AM, Klaus ma

Re: export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
Hi Brian, > Am 10.12.2020 um 15:08 schrieb Brian Milby via use-livecode > : > > What about using (tObject)? sorry, no capisce? > Since tObject is a container itself, the export put the data in the container > directly instead of the referenced container? Hm, I thought you were working at L

Re: export snapshot woverwrites variable?

2020-12-10 Thread Brian Milby via use-livecode
What about using (tObject)? Since tObject is a container itself, the export put the data in the container directly instead of the referenced container? Sent from my iPhone > On Dec 10, 2020, at 8:56 AM, Klaus major-k via use-livecode > wrote: > > Hi friends, > > just found a very strange t

export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
Hi friends, just found a very strange thing... I have this script: ... put dasObjekt() into tObject ## returns in this special case -> image "Bild_1" flip tObject horizontal # Overwrite image data export snapshot from rect(the rect of tObject) of tObject to tObject as PNG ## But now, LC gives an

Re: return "error" code from standalone compile

2020-12-10 Thread John Balgenorth via use-livecode
Since Livecode is written in C++ here is some info about using return in C. Every C program has a function named main. At the end of the function the programmer usually writes a return 0; That tells the c program the code has completed and is exiting with a 0 value which confirms it has

Re: Printing a com.livecode.widget.browser

2020-12-10 Thread William de Smet via use-livecode
Hi Terry, Can you use lockscreen? Greetings William Op do 10 dec. 2020 om 10:15 schreef Terence Heaford via use-livecode < use-livecode@lists.runrev.com>: > Clearly you can’t print a card that contains a browser widget as livecode > is unable to do this. > > I don’t understand why because

Printing a com.livecode.widget.browser

2020-12-10 Thread Terence Heaford via use-livecode
Clearly you can’t print a card that contains a browser widget as livecode is unable to do this. I don’t understand why because Safari can and I believe they are both based on webkit. Anyway I have come up with a semi acceptable workflow that involves. 1. Exporting a screenshot of the screen wi

Re: return "error" code from standalone compile

2020-12-10 Thread matthias rebbe via use-livecode
Every application can have its own exit codes, but 0 should always be used for success and 1 for error. Although there are exceptions. The Dos Find command for example returns 1 when the search was successfull but nothing was found. You could use exit codes for example in batch files. The batch