Re: data grid - contextual menu

2009-05-04 Thread Trevor DeVore
On May 2, 2009, at 7:34 PM, Shao Sean wrote: [apologize in advanced if this is a double post] This seems to work and unless Trevor chimes in and says not to do it this way, it seems to work just fine on mouseDown pButton if (pButton = 3) then -- right click dgMouseDown pButton #

Re: data grid - contextual menu

2009-05-02 Thread Shao Sean
[apologize in advanced if this is a double post] This seems to work and unless Trevor chimes in and says not to do it this way, it seems to work just fine on mouseDown pButton if (pButton = 3) then -- right click dgMouseDown pButton # do context menu stuff else pass mouseD

data grid - contextual menu

2009-05-02 Thread Shao Sean
I am popping up a contextual menu on mouseDown with button 3 (ie. right-click, control-click) but the data grid list is not getting hilighted so the old hilighted line's information is showing up.. I have tried "click button 1 at the mouseLoc" before popping up my menu

Re: contextual menu cursor image

2007-05-10 Thread Richard Gaskin
Stephen Barncard wrote: >>If we had a message notifying us when the Control key is down >>without another key or a mouseDown I'd probably start using it. I >>guess in the meantime we'd have to poll for that, no? >> >>Maybe Apple's onto something in blowing that off that part of their >>own spec.

Re: contextual menu cursor image

2007-05-09 Thread Stephen Barncard
empty then set the cursor to tempCurse set the lockcursor to false end if END mouseLeave re: I was just at that Apple page just an hour ago. Stephen Barncard wrote: Anyone out there have a little .png file with the 16x16 'contextual menu' image? THis is the one with a li

Re: contextual menu cursor image

2007-05-09 Thread Richard Gaskin
Stephen Barncard wrote: Anyone out there have a little .png file with the 16x16 'contextual menu' image? THis is the one with a little menu (looks like a ladder) to the right of a standard arrow and it is not a standard Rev cursor (but a standard carbon cursor in osx.) Wei

contextual menu cursor image

2007-05-09 Thread Stephen Barncard
Anyone out there have a little .png file with the 16x16 'contextual menu' image? THis is the one with a little menu (looks like a ladder) to the right of a standard arrow and it is not a standard Rev cursor (but a standard carbon cursor in osx.) thanks! sqb -- stephen barncard

Re: contextual menu

2004-09-29 Thread Klaus Major
Hola Alejandro, Klaus Major wrote: Create a pop-up-menu button with all the"menupick" handlers you need and move this button OFF screen... on mouseup quoi if quoi = 3 then popup btn "your popup button here" end if end mouseup will popup that button when the right mouse-button is clicked =

Re[2]: contextual menu

2004-09-28 Thread thierry
Hi, >> Create a pop-up-menu button with all >> the"menupick" handlers >> you need and move this button OFF screen... >> on mouseup quoi >> if quoi = 3 then >> popup btn "your popup button here" >> end if >> end mouseup >> will popup that button when the right >> mouse-button is clicked >>

Re: contextual menu

2004-09-28 Thread Alejandro Tejada
Klaus Major wrote: > Create a pop-up-menu button with all > the"menupick" handlers > you need and move this button OFF screen... > on mouseup quoi > if quoi = 3 then > popup btn "your popup button here" > end if > end mouseup > will popup that button when the right > mouse-button is clicke