Re: [ANN] slotmachine iPhone was scrolling wheel

2010-10-11 Thread BNig
Rolf, thank you. And thank you for testing the first version (the one that was slow as molasses) and for encouraging me to actually register with apple as a developer. I even had to send them a photocopy of my ID-card attested by a notary because I messed up on the billing address of my credit

SHIFTy thoughts

2010-10-11 Thread Richmond
I would love to be able to trap when a modifier key is down like this: on shiftKeyDown do blah, blah, blah end shiftKeyDown but it seems that that is not possible in LievCode, unless, of course, I'm missing something . . . Richmond. ___

Re: SHIFTy thoughts

2010-10-11 Thread Colin Holgate
This might give you an idea: on checkkeys send checkkeys to me in 100 milliseconds put shiftkey() end checkkeys ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: SHIFTy thoughts

2010-10-11 Thread Roger . E . Eller
Richmond wroe: I would love to be able to trap when a modifier key is down like this: on shiftKeyDown do blah, blah, blah end shiftKeyDown but it seems that that is not possible in LievCode, unless, of course, I'm missing something . . . Richmond. I can only determine its state

Re: SHIFTy thoughts

2010-10-11 Thread Len Morgan
On 10/11/2010 6:16 AM, roger.e.el...@sealedair.com wrote: Richmond wroe: I would love to be able to trap when a modifier key is down like this: on shiftKeyDown do blah, blah, blah end shiftKeyDown but it seems that that is not possible in LievCode, unless, of course, I'm missing

Re: Downgrade to 2.9 How to get the Stackscript?

2010-10-11 Thread Inselfan
Hola Stephen, Thank you again for your helpfull suggest Horst -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Downgrade-to-2-9-How-to-get-the-Stackscript-tp2970454p2989832.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: SHIFTy thoughts

2010-10-11 Thread J. Landman Gay
On 10/11/10 6:27 AM, Len Morgan wrote: I think what Richmond was after was a message that get's sent when he presses the shift key, not detecting when it's down. The only way that comes to mind would be a front script that captured the keydown/keyup or rawkeys messages, check for the shift key

Rép : [ANN] Data Grid Helper - What is it ? - Text rewrote

2010-10-11 Thread André Bisseret
Bonjour TheSlug, I just bought your Data Grid Helper. Congratulation for this very nice tool ! Very intuitive indeed, and very useful when installing new dataGrids or modifying old ones ;-)) The documentation is concise enough and very clear. Un outil magnifique :-)) Best regards from

Re: Rép : [ANN] Data Grid Helper - What is it? - Text rewrote

2010-10-11 Thread paolo mazza
The DGH is a plugin, right? Can we use it also to deploy application for the web (revlet) and for mobile ? Thanks Paolo Mazza ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

a card answering to a mouseUp of the script of one of its groups!!!

2010-10-11 Thread André Bisseret
Bonjour, On the cards of a stack I have a group of fields (with backgroundBehavior set to true). Clicking on a line of any field of the group, open a substack (among others stuff) For that I have a mouseUp handler in the script of the group (refering to the target to get the name of

Re: a card answering to a mouseUp of the script of one of its groups!!!

2010-10-11 Thread Dar Scott
A group with backgroundBehavior set to true shows up in the message path behind the card. By behind I mean, the script is searched for matching handlers right after the card is searched and nothing is found. Perhaps you can check that the name of the target is among those expected and

Re: SHIFTy thoughts

2010-10-11 Thread Richmond
On 10/11/2010 02:06 PM, Colin Holgate wrote: This might give you an idea: on checkkeys send checkkeys to me in 100 milliseconds put shiftkey() end checkkeys _ This: on rawKeyDown if shiftkey() is down then put DOWN into fld fSHIFT end if end rawKeyDown on rawKeyUp

Re: SHIFTy thoughts

2010-10-11 Thread Colin Holgate
On Oct 11, 2010, at 12:49 PM, Richmond wrote: what I cannot work out how to do is find out if the SHIFT key is down without having to plonk my fat fingers on some other key as well. You said this just now, with my solution that works still copied in the top of your message. Take another

Re: SHIFTy thoughts

2010-10-11 Thread Colin Holgate
This part: if the shiftkey and not shiftisdown then UserReleasedShiftKey end if should have been: if not the shiftkey and shiftisdown then UserReleasedShiftKey end if ___ use-revolution mailing list

Re: SHIFTy thoughts

2010-10-11 Thread Scott Rossi
Here's one way to do what you ask: [in the card script] on openCard if trackKeys is not in pendingMessages() then trackKeys end openCard on trackKeys set the shiftKeyPressed of me to (65505 is among the lines of keysDown()) send trackKeys to me in 50 millisecs end trackKeys This

Re: SHIFTy thoughts

2010-10-11 Thread Scott Rossi
Or maybe this: on openCard if trackKeys is not in pendingMessages() then trackKeys end openCard on trackKeys set the shiftKeyPressed of me to (shiftKey() = down) send trackKeys to me in 50 millisecs end trackKeys Recently, I wrote: Here's one way to do what you ask: [in the card

Re: SHIFTy thoughts

2010-10-11 Thread Colin Holgate
On Oct 11, 2010, at 1:43 PM, Scott Rossi wrote: Or maybe this: Your two approaches are basically the same idea as mine, only in yours there is still no way for the rest of the script to know that the shift was pressed. You might also need an idle check, or another send, to then inspect the

Re: SHIFTy thoughts

2010-10-11 Thread Scott Rossi
Recently, Colin Holgate wrote: Or maybe this: Your two approaches are basically the same idea as mine, only in yours there is still no way for the rest of the script to know that the shift was pressed. You might also need an idle check, or another send, to then inspect the state of

Re: SHIFTy thoughts

2010-10-11 Thread Colin Holgate
On Oct 11, 2010, at 2:03 PM, Scott Rossi wrote: Sorry, I'm not following -- the shift state is constantly polled/stored, so why does the script need to care about the state at all? He wants to have an action happen when the user presses the shift key. Your variable knows whether the shift

Re: a card answering to a mouseUp of the script of one of its groups!!!

2010-10-11 Thread André Bisseret
Thanks a lot Dar for your prompt reply. Le 11 oct. 10 à 18:13, Dar Scott a écrit : A group with backgroundBehavior set to true shows up in the message path behind the card. By behind I mean, the script is searched for matching handlers right after the card is searched and nothing is

Re: SHIFTy thoughts

2010-10-11 Thread Scott Rossi
Recently, Colin Holgate wrote: Sorry, I'm not following -- the shift state is constantly polled/stored, so why does the script need to care about the state at all? He wants to have an action happen when the user presses the shift key. Your variable knows whether the shift is down, but his

Re: Rép : [ANN] Data Grid Helper - What is it? - Text rewrote

2010-10-11 Thread zryip theSlug
On Mon, Oct 11, 2010 at 4:51 PM, André Bisseret andre.bisse...@wanadoo.fr wrote: Bonjour TheSlug, I just bought your Data Grid Helper. Congratulation for this very nice tool ! Very intuitive indeed, and very useful when installing new dataGrids or modifying old ones ;-)) The documentation

Re: [OT] Morning fun: Tao of Programming

2010-10-11 Thread Bob Sneidar
I LOVE the one about the novice playing a hand-held computer game! Classic! Bob On Oct 9, 2010, at 9:09 AM, Andre Garzia wrote: http://www.canonical.org/~kragen/tao-of-programming.html There are some real pearls in here. -- http://www.andregarzia.com All We Do Is Code.

Re: [OT] Morning fun: Tao of Programming

2010-10-11 Thread Bob Sneidar
Okay all this talk about cheesy spicy Catholics is getting darned near crossing the line!! Bob On Oct 9, 2010, at 12:44 PM, Richmond wrote: A bit too Catholic for my taste (purgatory); let's just say that over the last few lifetimes I obviously racked some some fairly negative karma and

Re: [ANN] Data Grid Helper - What is it? - Text rewrote

2010-10-11 Thread Bob Sneidar
Perfect! Bob On Oct 10, 2010, at 10:30 AM, zryip theSlug wrote: Dear LiveCode users, It seems that I was not really explicit about what exactly DGH is and what it can do. So I rewrote a text and I send it to the list to have your opinion about this new explanation. Do you think that is

Re: [OT] 42-day

2010-10-11 Thread Bob Sneidar
OH MY GOSH! I am 42 today! And have been for some years now! ;-) Bob On Oct 10, 2010, at 2:16 AM, Mark Schonewille wrote: Hi, Today is 42-day. put baseconvert(42,10,2) gives 101010, which is today's date. I believe this is a good occasion to post a link to an anecode that Colin

Re: Rép : [ANN] Data Grid Helper - What is it? - Text rewrote

2010-10-11 Thread zryip theSlug
On Mon, Oct 11, 2010 at 4:54 PM, paolo mazza mazzapaoloit...@gmail.com wrote: The DGH is a plugin, right? Can we use it also to deploy application for the web (revlet) and for mobile ? Thanks Paolo Mazza Paolo, you are correct. DGH is a plugin. This plugin gives an alternative interface to

Re: SHIFTy thoughts

2010-10-11 Thread Richmond
Thank you all for your suggestions, although they all seem rather abstruse for simply toggling the visibility of an image. At present I am toggling with F-12 (which puts some people's noses out of joint, hence proposal to use SHIFT): on rawKeyDown ---socking great, mind-bogglingly tedious

Re: SHIFTy thoughts

2010-10-11 Thread Colin Holgate
On Oct 11, 2010, at 2:56 PM, Richmond wrote: as you can see; fairly pedestrian stuff, which is why I get all moist and sweaty when I think about the Shift key. Could you use the space bar? If you can't because people are entering words in a field, then shift would be a problem too for

Re: SHIFTy thoughts

2010-10-11 Thread J. Landman Gay
On 10/11/10 1:56 PM, Richmond wrote: Thank you all for your suggestions, although they all seem rather abstruse for simply toggling the visibility of an image. At present I am toggling with F-12 (which puts some people's noses out of joint, hence proposal to use SHIFT): By default, OS X

Re: [ANN] Data Grid Helper - What is it? - Text rewrote

2010-10-11 Thread zryip theSlug
On Mon, Oct 11, 2010 at 8:35 PM, Bob Sneidar b...@twft.com wrote: Perfect! Bob Bob, Thanks for your opinion 8-) On Oct 10, 2010, at 10:30 AM, zryip theSlug wrote: Dear LiveCode users, It seems that I was not really explicit about what exactly DGH is and what it can do. So I rewrote

Moving 2 object at the same time ...

2010-10-11 Thread Jean-Pierre Soto
Hello, I want to move to image on the screen in the same time. I try to use the lockMove property but the image jump directly from start to end of the move. Can anyBody help me with that ? ___ use-revolution mailing list

Re: Moving 2 object at the same time ...

2010-10-11 Thread Devin Asay
On Oct 11, 2010, at 2:51 PM, Jean-Pierre Soto wrote: Hello, I want to move to image on the screen in the same time. I try to use the lockMove property but the image jump directly from start to end of the move. Can anyBody help me with that ? Jean-Pierre, Add the phrase 'without

Re: Moving 2 object at the same time ...

2010-10-11 Thread Marty Knapp
You could place both images in a group and move the group. Marty Knapp Hello, I want to move to image on the screen in the same time. I try to use the lockMove property but the image jump directly from start to end of the move. Can anyBody help me with that ?