Re: Right click menu on Windows

2004-08-25 Thread Mark Brownell
On Tuesday, August 24, 2004, at 10:11 PM, Brian Yennie wrote: What happens if you set the traversalOn Ah! That reminds me of my rock-climbing days. This is a case of hearing about setting the traversalOn and forgetting why. Perhaps it would be better to say get your arhs out there. Well, better

Right click menu on Windows

2004-08-24 Thread Mark Brownell
Hi, I'm trying to create a right click menu that come up like in the IDE. I want right click control of cut, copy, paste, clear. My control-C and control-V work fine. Anyone know where to look for this capability? Mark ___ use-revolution mailing list

Re: Right click menu on Windows

2004-08-24 Thread Klaus Major
Hi Mark, Hi, I'm trying to create a right click menu that come up like in the IDE. I want right click control of cut, copy, paste, clear. My control-C and control-V work fine. Anyone know where to look for this capability? Create a popup button with the menus you need and put it offscreen... (I

Re: Right click menu on Windows

2004-08-24 Thread Mark Brownell
On Tuesday, August 24, 2004, at 11:53 AM, Mark Brownell wrote: Hi, I'm trying to create a right click menu that come up like in the IDE. I want right click control of cut, copy, paste, clear. My control-C and control-V work fine. Anyone know where to look for this capability? Mark from the

Re: Right click menu on Windows

2004-08-24 Thread Mark Brownell
On Tuesday, August 24, 2004, at 11:59 AM, Klaus Major wrote: popup btn you btn here Oh, popup a button. cool... thanks, it did help. Mark ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Right click menu on Windows

2004-08-24 Thread Mark Brownell
Is it possible to simulate a key combination click? I'm trying to simulate a (Control C) and (Control V) from a menuPick for copy paste. I have a popup menu that allows me to use a field with textLock true on mouseDown and the textLock false on mouseUp. This enables the mouseDown to pass the

Re: Right click menu on Windows

2004-08-24 Thread Sarah Reichelt
Is it possible to simulate a key combination click? I'm trying to simulate a (Control C) and (Control V) from a menuPick for copy paste. I have a popup menu that allows me to use a field with textLock true on mouseDown and the textLock false on mouseUp. This enables the mouseDown to pass the

Re: Right click menu on Windows

2004-08-24 Thread J. Landman Gay
On 8/24/04 4:26 PM, Mark Brownell wrote: Is it possible to simulate a key combination click? I'm trying to simulate a (Control C) and (Control V) from a menuPick for copy paste. I have a popup menu that allows me to use a field with textLock true on mouseDown and the textLock false on

Re: Right click menu on Windows

2004-08-24 Thread Mark Brownell
On Tuesday, August 24, 2004, at 06:34 PM, Sarah Reichelt wrote: Why do you want to simulate a key combination? Wouldn't it be easier just to have your popup menu use the copy, paste, cut undo commands directly? Sarah They don't work for some reason that I can't understand. The keyboard

Re: Right click menu on Windows

2004-08-24 Thread Brian Yennie
This sounds like your popup menu is grabbing the focus from the field. What happens if you set the traversalOn (is that the right property name) to false for that menu button? So I just tried now and with the mousedown handler moved from the text field to the stack the handler opens the popup