What if Windows users rarely printed things?

2020-06-26 Thread Curry Kenworthy via use-livecode
What if Windows users rarely printed things? That hypothetical alternative world/dimension almost looks like part of LiveCode's operating paradigm! Windows print bugs don't seem to get much attention. For example, LC cannot print a field that has vGrid turned

Re: Book - Programming LiveCode... - What if you don't hear form us after purchasing

2020-02-16 Thread Drs Mark Schonewille via use-livecode
Dear Marian, Yes, your book was sent approximately 6 weeks ago. We'll be in touch. Mark Schonewille Economy-x-Talk https://ecxtalk.nl https://www.nt2.nu Programming LiveCode for the Real Beginner http://www.ecxtalk.nl/file.php?node=programming-livecode-for-the-real-beginner Op 16-2-2020 om 13:

Re: Book - Programming LiveCode... - What if you don't hear form us after purchasing

2020-02-16 Thread Marian Petrides MD via use-livecode
Mark, I purchased the book and I think I responded to your email regarding mailing address. However, I have not received my book. Has it been sent? For the record, my mailing address is: Marian Petrides, MD 39 Wild Turkey Lane Waitsfield, VT 05673USA Thanks. Marian Sent from my iPad

Book - Programming LiveCode... - What if you don't hear form us after purchasing

2020-02-16 Thread Drs Mark Schonewille via use-livecode
Hello book fans, There are a few people who have purchased the book but never responded to our e-mails. If you have purchased it but haven't received it yet, please read this. One you have your payment confirmation (from PayPal or from Economy-x-Talk) you need to wait a few days. You will re

[ANN] What if there's no way to upload a file to a server?ยจ

2014-01-28 Thread Mark Schonewille
Hi, More than once, the question has been asked how to upload files to a server from a mobile device. An important problem is that sockets aren't supported by default and a bug on Android preventing pictures from being saved to an album or attached to an e-mail. You might use Dropbox or a sim

Re: What If... scenario for Open Source Livecode

2013-02-11 Thread Heather Laine
ffice Org . > . . . > >> >> >> On Feb 10, 2013, at 10:36 PM, Alejandro Tejada >> wrote: >> >>> What if February 28th a big company like Apple decides to contribute >>> all the money left to

Re: What If... scenario for Open Source Livecode

2013-02-10 Thread Richmond
ld be unacceptable conditions attached that would compromise the open-source-ness of the thing? If one goes and has a look why LibreOffice was forked from Open Office Org . . . . On Feb 10, 2013, at 10:36 PM, Alejandro Tejada wrote: What if February 28th a big company like Apple decid

Re: What If... scenario for Open Source Livecode

2013-02-10 Thread Glen Bojsza
> > On Feb 10, 2013, at 10:36 PM, Alejandro Tejada > wrote: > > > What if February 28th a big company like Apple decides to contribute > > all the money left to complete the target of 350,000? > > > > Will RunRev accept such donation to open source Livecode? > &g

Re: What If... scenario for Open Source Livecode

2013-02-10 Thread Colin Holgate
Kickstarter pledges are a certain amount, or more, aren't they? If someone donated 76.1% of the money today, that ought to be accepted automatically. On Feb 10, 2013, at 10:36 PM, Alejandro Tejada wrote: > What if February 28th a big company like Apple decides to contribute > al

What If... scenario for Open Source Livecode

2013-02-10 Thread Alejandro Tejada
Hi All, I have reading previous messages speculating about the possible outcomes of the Kickstarter campaign. But... What if February 28th a big company like Apple decides to contribute all the money left to complete the target of 350,000? Will RunRev accept such donation to open source

Re: What if....

2013-01-29 Thread Peter M. Brigham
Oh, right. -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Jan 29, 2013, at 5:15 PM, Alex Tweedly wrote: > On 29/01/2013 20:31, Peter M. Brigham wrote: >> ... With an expression that is exclusively "ands" the first one that >> evaluates to false settles the value

Re: What if....

2013-01-29 Thread Alex Tweedly
On 29/01/2013 20:31, Peter M. Brigham wrote: ... With an expression that is exclusively "ands" the first one that evaluates to false settles the value of the expression as false, and the engine stops there and returns the value. With "or" expressions, all the clauses have to be checked in order

Re: What if....

2013-01-29 Thread Peter M. Brigham
Well, both "and and "or" expressions are one expression, but you are right that my comment only applies to the "and" operator. The engine is very parsimonious and quits when it has enough info to evaluate the expression. With an expression that is exclusively "ands" the first one that evaluates

Re: What if....

2013-01-29 Thread Robert Sneidar
I believe if you change that to or, you will throw an error. Or at least you should! Thinking about this, it may be simpler to think of AND comparisons a single expressions and OR comparisons as delimiting multiple expressions. In a SINGLE LOGICAL EXPRESSION evaluation will terminate when a fals

Re: What if....

2013-01-29 Thread Robert Sneidar
if false and false or true then becomes: if (false and false) or true then becomes: if false or true then becomes: if true then answer "Got it 4!" You are thinking of false and true as individual statements and they are not. The whole condition is one statement. Or if you like, the ands are

Re: What if....

2013-01-29 Thread Robert Sneidar
It's order of precedence. AND before OR. Bob On Jan 28, 2013, at 9:33 PM, Thierry Douez wrote: > Hi Jacques, > > Thanks for testing. > > Umm, I don't have the correct answers. > > The first test gives me False, which should be the same > as the fourth case which gives True! > > Or, did I m

Re: What if....

2013-01-29 Thread Robert Sneidar
False 1! False 2! Got it 3! Got it 4! Off the top of my head. Bob On Jan 28, 2013, at 4:36 AM, Thierry Douez wrote: > Hi Peter, > > 2013/1/27 Peter Haworth > >> Musings about complex if statements on this Sunday morning... >> >> if cond1 and cond2 and cond3 and cond4 then. >> >> if c

Re: What if....

2013-01-29 Thread Robert Sneidar
I should rephrase that. If condition 1 and/or 2 involve long time consuming evaluations, there would be an advantage the putting conditions 3 and 4 in parens, since they would be evaluated first, saving time in some instances. But the way to do that is put your time consuming evaluations last wh

Re: What if....

2013-01-29 Thread Robert Sneidar
Doesn't matter. It's like saying 1 + 2 + (3 + 4). That is why they use + as the AND operator in boolean logic. Bob On Jan 27, 2013, at 10:39 AM, Peter Haworth wrote: > The manual says the grouping operator (parens) has the highest precedence > so does this mean (cond3 and cond4) will be evalu

Re: What if....

2013-01-29 Thread Robert Sneidar
on as a condition evaluates to false, none of the rest > are evaluated, right? If so, then always best to put the conditions that > take the longest to evaluate further down the list, for example perhaps an > SQL SELECT statement that might take a while to execute? But then what if > s

Re: What if....

2013-01-29 Thread Peter M. Brigham
case, as soon as a condition evaluates to false, none of the rest > are evaluated, right? If so, then always best to put the conditions that > take the longest to evaluate further down the list, for example perhaps an > SQL SELECT statement that might take a while to execute? But then

Re: What if....

2013-01-29 Thread Thierry Douez
2013/1/29 Paul Hibbert Sorry, just re-read your reply and realised I skipped this, > At last, I get it. My concern was not about how you write the if in LC, but about the evaluation of the logical expressions, the order of precedence and commutativity. Obviously, I was wrong. case 1 and case

Re: What if....

2013-01-29 Thread Paul Hibbert
On 2013-01-28, at 11:40 PM, Thierry Douez wrote: > which with my little understanding they should not (case 1 should be true) ! Sorry, just re-read your reply and realised I skipped this, if false or true and false then Condition 1 (if false) returns false Condition 2 (true AND false) also r

Re: What if....

2013-01-28 Thread Paul Hibbert
On 2013-01-28, at 11:40 PM, Thierry Douez wrote: > don't have to check for each sub-condition if it is true, for instance: Maybe I'm wrong, but the way I read statement 4, the first condition is false (if false and false) so the if statement continues to the second condition (or true) and ret

Re: What if....

2013-01-28 Thread Thierry Douez
2013/1/29 Paul Hibbert > Thierry, > > Just fill in the blanks! > Hi Paul, Thanks for your tries. But... After an if , there is a condition which is true or false; don't have to check for each sub-condition if it is true, for instance: put true into test if test then put "Ok" is the same

Re: What if....

2013-01-28 Thread Paul Hibbert
Thierry, Just fill in the blanks! on mouseUp if false is true or true is true and false is true then ## = False answer "Got it 1!" else answer "False 1!" end if if false is true or (true is true and false is true) then ## = False answer "Got it 2!" else answer "False

Re: What if....

2013-01-28 Thread Thierry Douez
Hi Jacques, Thanks for testing. Umm, I don't have the correct answers. The first test gives me False, which should be the same as the fourth case which gives True! Or, did I miss something ? Thierry 2013/1/28 J. Landman Gay > On 1/28/13 6:36 AM, Thierry Douez wrote: > > So, smart livecoder

Re: What if....

2013-01-28 Thread J. Landman Gay
On 1/28/13 6:36 AM, Thierry Douez wrote: So, smart livecoders, try to guess what would be the 4 answers to this script; then run it and thanks to comment :) on mouseUp if false or true and false then answer "Got it 1!" else answer "False 1!" end if if false or (tr

Re: What if....

2013-01-28 Thread Thierry Douez
Hi Peter, 2013/1/27 Peter Haworth > Musings about complex if statements on this Sunday morning... > > if cond1 and cond2 and cond3 and cond4 then. > > if cond1 then >if cond2 then > if cond3 then > if cond4 then... > > if cond1 and cond2 and (cond3 and cond4) then > >

Re: What if....

2013-01-27 Thread Peter Haworth
Thanks Mark, sounds like a stye thing then. I love it when real programmers post on this list - what is DRY code? Not really on topic, but whatever happened to decision table processors? I used one years ago and found it to be a great way to express complex if statements and their related action

Re: What if....

2013-01-27 Thread Mark Wieder
Pete- Sunday, January 27, 2013, 11:45:16 AM, you wrote: > OK, so I understand the parens thing now. Any thoughts on the use of > multiple ifs vs joining the conditions together with "and". I've > always considered that to be just a matter of personal preference and ease > of reading but wonderi

Re: What if....

2013-01-27 Thread Peter Haworth
OK, so I understand the parens thing now. Any thoughts on the use of multiple ifs vs joining the conditions together with "and". I've always considered that to be just a matter of personal preference and ease of reading but wondering if there might be other implications, like performance for exam

Re: What if....

2013-01-27 Thread Peter Haworth
ither case, as soon as a condition evaluates to false, none of the > rest > > are evaluated, right? If so, then always best to put the conditions that > > take the longest to evaluate further down the list, for example perhaps > an > > SQL SELECT statement that might take a while

Re: What if....

2013-01-27 Thread J. Landman Gay
On 1/27/13 12:39 PM, Peter Haworth wrote: Musings about complex if statements on this Sunday morning Lets say you have a complex if statement with 4 conditions that must all be true. Is there any advantage, other than personal preference/style, to: if cond1 and cond2 and cond3 and cond4 th

Re: What if....

2013-01-27 Thread Mike Bonner
en. >> >> or >> >> if cond1 then >>if cond2 then >> if cond3 then >> if cond4 then... >> >> In either case, as soon as a condition evaluates to false, none of the >> rest >> are evaluated, right? If so, t

Re: What if....

2013-01-27 Thread Mike Bonner
if cond3 then > if cond4 then... > > In either case, as soon as a condition evaluates to false, none of the rest > are evaluated, right? If so, then always best to put the conditions that > take the longest to evaluate further down the list, for example perhaps an >

What if....

2013-01-27 Thread Peter Haworth
might take a while to execute? But then what if some of the conditions are in parens, for example: if cond1 and cond2 and (cond3 and cond4) then The manual says the grouping operator (parens) has the highest precedence so does this mean (cond3 and cond4) will be evaluated before cond1 and