Couple of DesktopX Right click related things

I would really like to be able to use the Right Click Actions without a menu popping up on the object too. I am using Left click to increase a number and want to use Right click to reduce the same number. Atm I have to use CTRL Left Click which isn't as intuitive.

Also, a useful item to add to the right click menu in EDIT mode would be 'Hide'??. Sometimes I am making Visible : Yes and Visible : No changes frequently to an object and it's a bit tiresome navigating to the tab and click on the visible option there. Be much easier if I could just right click -> Hide, the object.

3,597 views 3 replies
Reply #1 Top
To disable the normal right click menu just use the following code:

Function Object_OnRButtonUp(x,y,dragged)
If not dragged then
'code to reduce the number
End If
Object_OnRButtonUp=True
End Function

to access the right click menu (for objects in builder mode) you can still use CTRL + rightclick

is that what you meant?
Reply #2 Top




You know, I had tried this a while ago, and I was sure I still got menus popping up like 'Remove' in client mode...though I never had the Object_OnRButtonUp=True at the bottom...what does that do exactly?

If it ever was an actual issue, it doesn't seem to be now
cheers tiggz.



Posted via WinCustomize Browser/Stardock Central
Reply #3 Top
i have the same problem because in Client mode i sometimes accidentally remove some widgets in the desktop. Btw, where do you put the code "Object_OnRButtonUp=True"? i like to remove the "remove" right click function too in Client mode. Thanks