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
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:
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
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
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
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
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
>
> 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
>
>
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
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
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
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
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
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
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
>
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
37 matches
Mail list logo