How do I prevent a Key being pressed down all the time?

2008-09-27 Thread William de Smet
Hello all, For my little son (4 years of age) I am making a little car game in which he can move a car around the screen using the arrowkeys. I made a few obstakels (walls) so he has to move around them but when he hits them he is send back to the beginposition. Not to difficult for me to make

Re: conference videos

2008-09-27 Thread Marian Petrides
I haven't gotten mine either. Just emailed support as per Kevin's request. Sent from my iPhone On Sep 26, 2008, at 5:07 PM, Kevin Miller [EMAIL PROTECTED] wrote: On 26/9/08 20:54, Stephen Barncard [EMAIL PROTECTED] wrote: Anyone know what happened to the videos from the RunRev

Re: How do I prevent a Key being pressed down all the time?

2008-09-27 Thread Eric Chatonet
Bonjour WIlliam, Obviously your son has found an easy way to win :-) All key events are sent repeatedly as long as the key is pressed. To prevent further triggering by the same handler, just use the flushEvents function to trash all events you don't want until your handler has been

Re: conference videos

2008-09-27 Thread Charles Szasz
It has been over four months since I paid for the conference videos. I sent an e-mail to Rev Support on Thursday canceling my video order. Petrides, M.D. Marian wrote: I haven't gotten mine either. Just emailed support as per Kevin's request. Sent from my iPhone On Sep 26, 2008,

Re: conference videos

2008-09-27 Thread Mark Wieder
Marian- Saturday, September 27, 2008, 6:16:41 AM, you wrote: I haven't gotten mine either. Just emailed support as per Kevin's request. Good luck. I never got a response to the email I sent in May. -- -Mark Wieder [EMAIL PROTECTED] ___

Re: Object Reference in Variable?

2008-09-27 Thread Mark Wieder
Eric- I can't remember whether I've posted this here or not, but anyone interested in the Office ribbon might well enjoy this video talk. It's some 75 minutes long so prepare to sit for a while, but it's a fascinating perspective into what the ribbon development tean thought was right and wrong

Re: How do I prevent a Key being pressed down all the time?

2008-09-27 Thread Andres Martinez
Hello William An easier way to use the arrow keys is whit the arrowKey handler. But unfortunately it keeps being sent while the key is pressed. What you need is a way to check for the key being released. The following code will do the trick ON arrowKey theKey if (theKey = Right) and

Re: How do I prevent a Key being pressed down all the time?

2008-09-27 Thread William de Smet
Hello Eric and Andreas, My problem is that the arrowkey is hold down and not being pressed quickly several times. So there is no keyup. Or do I not get what you mean? The flushEvents doesn't work either :-( greetings, William 2008/9/27 Andres Martinez [EMAIL PROTECTED]: Hello William An

Re: How do I prevent a Key being pressed down all the time?

2008-09-27 Thread Andres Martinez
Hello William Did you try the solution I proposed? Regards, Andres Martinez www.baKno.com On Sep 27, 2008, at 3:11 PM, William de Smet wrote: Hello Eric and Andreas, My problem is that the arrowkey is hold down and not being pressed quickly several times. So there is no keyup. Or do I not

Re: How do I prevent a Key being pressed down all the time?

2008-09-27 Thread William de Smet
Hi Andreas, Yes I did use your script. To avoid issues I used it into a new stack. When I use my script in a button everything works fine but when using the arrowkeys it doesn't because, like I said, the key is hold down the whole time. The script for the arrow keys is used as a stack script.

Re: How do I prevent a Key being pressed down all the time?

2008-09-27 Thread BNig
Hi Andreas and William, Andreas that is very nifty and works for me, it seems though you left out the local variable. William you would have to script the other arrowKeys if you use them in your program. This works for me in a stack script: - local pressed on arrowKey theKey if

Breakpoint troubles

2008-09-27 Thread Len Morgan
I'm trying to debug the following: ... breakpoint put URL myURL into tTextOfURL put I made it It seems to be stopping ok at the breakpoint but when I execute the next line (the put URL...), it skips to end of the handler. Actually, to the next line of the handler that called this one. Is