Re: Repeat until the MouseClick to stop 'flashing' button?

2010-06-09 Thread William de Smet
>> button "2"  so button "1" stops flashing and executes its own script: >> on mouseUp >>    set the backgroundcolor of me to the backgroundcolor of grc "dummy" >> end mouseUp > >> I try adding 'repeat until the MouseClick' in b

Re: Repeat until the MouseClick to stop 'flashing' button?

2010-06-08 Thread Mark Wieder
25 ticks >   show me >   wait 25 ticks > end repeat > end mouseUp > The idea is that while button "1" is flashing I want to click at > button "2"  so button "1" stops flashing and executes its own script: > on mouseUp >    set the backgroun

Re: Repeat until the MouseClick to stop 'flashing' button?

2010-06-08 Thread William de Smet
;1" is flashing I want to click at button "2"  so button "1" stops flashing and executes its own script: on mouseUp    set the backgroundcolor of me to the backgroundcolor of grc "dummy" end mouseUp I try adding 'repeat until the MouseClick' in button &quo

Re: Repeat until the MouseClick to stop 'flashing' button?

2010-06-08 Thread Mark Wieder
William- Tuesday, June 8, 2010, 12:28:14 PM, you wrote: > That's just my way to make clear what I am doing. It's too hard for me to read. I'll pass on this one. -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revolution@l

Re: Repeat until the MouseClick to stop 'flashing' button?

2010-06-08 Thread William de Smet
Hi Mark, That's just my way to make clear what I am doing. I do't use them in the script. Greetings, William 2010/6/8 Mark Wieder > William- > > What's with the asterisks and the double spacing? > > -- > -Mark Wieder > mwie...@ahsoftware.net > > __

Re: Repeat until the MouseClick to stop 'flashing' button?

2010-06-08 Thread Mark Wieder
William- What's with the asterisks and the double spacing? -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preference

Repeat until the MouseClick to stop 'flashing' button?

2010-06-08 Thread William de Smet
dummy" *end* mouseUp --- I try adding 'repeat until the MouseClick' in button "1" but that only stops the flashing (what I want) but doesn't execute the script in button "2". To run the script on button "2" I have to click o

Re: repeat until the mouseClick

2007-04-23 Thread John Craig
Another variation; repeat until the mouseClick or the keysDown is not empty end repeat Mike Hughes wrote: I use the following 2 lines of code to pause a program until the user clicks the mouse: repeat until the mouseClick end repeat I would like to extend the functionality of this script

Re: repeat until the mouseClick

2007-04-22 Thread Jim Ault
On 4/22/07 4:12 PM, "Mike Hughes" <[EMAIL PROTECTED]> wrote: > I use the following 2 lines of code to pause a program until the user clicks > the mouse: > > repeat until the mouseClick > end repeat > > I would like to extend the functionality of this scrip

Re: repeat until the mouseClick

2007-04-22 Thread Mark Smith
repeat until the mouseClick if the keysDown is not empty then exit repeat end repeat Best, Mark On 23 Apr 2007, at 00:12, Mike Hughes wrote: I use the following 2 lines of code to pause a program until the user clicks the mouse: repeat until the mouseClick end repeat I would like

Re: repeat until the mouseClick

2007-04-22 Thread Brent Anderson
, like so... local keyFlag on keyDown put true into keyFlag pass keydown -- Unless you don't want to pass the message, of course end keyDown on myHandler ... put false into keyFlag repeat until the mouseclick if keyFlag is true then exit repeat end repeat ... end myHandler T

repeat until the mouseClick

2007-04-22 Thread Mike Hughes
I use the following 2 lines of code to pause a program until the user clicks the mouse: repeat until the mouseClick end repeat I would like to extend the functionality of this script so that a user can stop the pause with a keystroke in addition to clicking the mouse. How would I tweak that

Re: Can a mouseclick simultaneously send a message as it ends a"repeat until the mouseclick" loop?

2002-11-22 Thread Mark Swindell
on 11/22/02 7:47 AM, Dar Scott at [EMAIL PROTECTED] wrote: > On Friday, November 22, 2002, at 02:20 AM, Jan Schenkel wrote: > >> First of all, let's redo the repeat loop and make it a >> 'send' loop. > > I recommend Jan's approach. > > And would add this. > > If doSlideThing is called from a b

Re: Can a mouseclick simultaneously send a message as it ends a "repeat until the mouseclick" loop?

2002-11-22 Thread Dar Scott
On Friday, November 22, 2002, at 02:20 AM, Jan Schenkel wrote: First of all, let's redo the repeat loop and make it a 'send' loop. I recommend Jan's approach. And would add this. If doSlideThing is called from a button mouseUp, you need a way to keep from starting a second slide show runnin

Re: Can a mouseclick simultaneously send a message as it ends a "repeat until the mouseclick" loop?

2002-11-22 Thread Jan Schenkel
cursor, what I need it for the > mouseUp to be sent on actually clicking the mouse > from within the repeat > loop, not simply crossing over, or hovering over, > the control region. I'm > probably missing something, so please educate me. > > Given that I have a pretty sim

Re: Can a mouseclick simultaneously send a message as it ends a"repeat until the mouseclick" loop?

2002-11-21 Thread Mark Swindell
on 11/21/02 10:24 PM, Jan Schenkel at [EMAIL PROTECTED] wrote: > --- Mark Swindell <[EMAIL PROTECTED]> wrote: >> If I am in a (repeat until the mouseclick) loop, is >> it possible to have the >> same mouseclick that ends the repeat also send a >> mouseUp even

Re: Can a mouseclick simultaneously send a message as it ends a "repeat until the mouseclick" loop?

2002-11-21 Thread Jan Schenkel
--- Mark Swindell <[EMAIL PROTECTED]> wrote: > If I am in a (repeat until the mouseclick) loop, is > it possible to have the > same mouseclick that ends the repeat also send a > mouseUp event to another > button? I have a repeating slide show that I'd like > the user