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: [OT] Survival of WebOS

2013-01-28 Thread Mark Wieder
Roger- Monday, January 28, 2013, 7:55:16 PM, you wrote: > I'll have to give this a try. > http://arstechnica.com/gadgets/2013/01/reviving-the-dead-how-android-devices-are-keeping-webos-alive/ My Touchpad dual-boots into webos or android, and while android has more apps available I find I much p

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

[OT] Survival of WebOS

2013-01-28 Thread Roger Eller
I'll have to give this a try. http://arstechnica.com/gadgets/2013/01/reviving-the-dead-how-android-devices-are-keeping-webos-alive/ ~Roger Sent from my Pipo M2 ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscri

I'm on the runrev home page, who knew!

2013-01-28 Thread Colin Holgate
I was checking the latest home page layout of runrev.com, and even watched the video of Kevin presenting. Not sure why I scrolled further down the page, but there's an enormous promo for my book! Hopefully runrev get a few cents per copy sold. ___ u

[OT] LivingBooks are Back

2013-01-28 Thread Kay C Lan
On Fri, Jan 4, 2013 at 12:58 AM, John Dixon wrote: > There are three CD's that I will always remember... I at one time owned them > all, but alas I have not got a clue where they went to..:-( > > From Alice to Ocean > Hard Days Night > Just Grandma & Me... > > The first two being hyperCard and th

Re: Changing UI design.

2013-01-28 Thread terence
Good article Sent from Samsung MobileAlex Tweedly wrote:I usually resist any temptation to forward links from Slashdot, but I think this one is particularly interesting for users of (perhaps) the most cross-platform development tool around. http://www.drdobbs.com/architecture-and-design/mobi

Changing UI design.

2013-01-28 Thread Alex Tweedly
I usually resist any temptation to forward links from Slashdot, but I think this one is particularly interesting for users of (perhaps) the most cross-platform development tool around. http://www.drdobbs.com/architecture-and-design/mobile-as-the-driver-of-desktop-software/240146757 (sorry, don

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: Synchronicity

2013-01-28 Thread Peter Haworth
Thanks to all for the input. I abandoned trying to use the visibility of the group as the flag to stop processing, just couldn't seem to get that working. Using a custom property as the flag now works. Turned out I needed to check the cprop in a couple of lower level handlers which I had forgotte

Re: To customers of Economy-x-Talk

2013-01-28 Thread Mark Schonewille
Hello, You might remember my previous e-mail about Economy-x-Talk's server. The server was destroyed by a power surge and we had to install a new server. It took almost two weeks to get most of it working again, but there are still a few things off-line. This announcement is important for eve

Re: good practise on handling menues on Mac?

2013-01-28 Thread Paul Hibbert
Tiemo, It's not usual to show your own menus on a Mac, if you check the option to "Set as stack Menu bar" that is next to the Menu bar name in the Menu Builder (LC 5.5.3) it will integrate your menu with the standard Mac Menu bar so you won't have duplicate 'Quit" item. I don't think this chec

good practise on handling menues on Mac?

2013-01-28 Thread Tiemo Hollmann TB
Hello, Still not being good on Mac I wonder what is a good practice? When building an app for windows, you create your own app menus. For example you have the standard "file - quit" menu item When taking over this app to Mac you still have (more or less) the same menus. But additionally you get

Re: Synchronicity

2013-01-28 Thread Thomas McGrath III
Peter, Sometimes when I am debugging through a handler, it seems to me, that visible states do not always happen when I think they should. But they work fine during normal running of the script. Also, I find it best to use a flag type check set when the item is hidden rather than checking the

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 > >

AW: how to intercept cmd + Q

2013-01-28 Thread Tiemo Hollmann TB
Ok, shutdownnRequest is the answer. I mixed it with closeStackRequest Thanks Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag > von Tiemo Hollmann TB > Gesendet: Montag, 28. Januar 2013 09:52 > An: 'How to use LiveCode' > Betre

Re: [TIP] Quick & Dirty Image Resizing

2013-01-28 Thread ha...@exformedia.se
I have something similar, but also have the shiftKey in the script, your script would be on resizeControl if the shiftKey is down then put long id of img 1 of me into myImage put formattedHeight of myImage/formattedWidth of myImage into thePercent set resizeQuality of myImage

how to intercept cmd + Q

2013-01-28 Thread Tiemo Hollmann TB
Hello, before closing my program I do some cleanups. I call my cleanup handler in the closestack handler. Now there are three ways to close my app on a mac. 1. My app has a own menu where the user can choose "exit". The closestack handler is called, everything is fine 2. The User can