Rocker-click show the 64-bit context menu?

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
Norn
Posts: 504
Joined: 24 Oct 2021 16:10

Rocker-click show the 64-bit context menu?

Post by Norn »

Can rock-click (Left-Mouse-Down + Right-Mouse-Click) show the 64-bit or 32-bit context menu? Both are useful to me.
Windows 11 24H2 @100% 2560x1440

admin
Site Admin
Posts: 66102
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Rocker-click show the 64-bit context menu?

Post by admin »

No, but:

Shift+Menu Key 32-bit Context Menu
Ctrl+Menu Key 64-bit Context Menu

Norn
Posts: 504
Joined: 24 Oct 2021 16:10

Re: Rocker-click show the 64-bit context menu?

Post by Norn »

It is most convenient to use the mouse directly, we can also customize a new menu via script if it is possible to run a script.
Windows 11 24H2 @100% 2560x1440

admin
Site Admin
Posts: 66102
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Rocker-click show the 64-bit context menu?

Post by admin »

Ctrl+RClick is already heavily overloaded. No room for more functionality.

Norn
Posts: 504
Joined: 24 Oct 2021 16:10

Re: Rocker-click show the 64-bit context menu?

Post by Norn »

OK, :? thanks.
Windows 11 24H2 @100% 2560x1440

Norn
Posts: 504
Joined: 24 Oct 2021 16:10

Re: Rocker-click show the 64-bit context menu?

Post by Norn »

Is there a script parameter to popup the context menu? Run XY script via AHK:

Code: Select all

#If MouseIsOver("ahk_class ThunderRT6FormDC")

~LButton & RButton::
 Run,D:\Tools\XYplorer\XYplorer.exe /feed="::#1400"

MouseIsOver(WinTitle) {
    MouseGetPos,,, Win
    return WinExist(WinTitle . " ahk_id " . Win)
}
Edit: Setkey is not working, I will create a new menu. :)

Code: Select all

if(getkey("ContextMenu64", "General") == 0) {setkey "1", "ContextMenu64", "General"} else {setkey "0", "ContextMenu64", "General"} #193;
Last edited by Norn on 22 Jan 2023 23:20, edited 2 times in total.
Windows 11 24H2 @100% 2560x1440

klownboy
Posts: 4459
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440

Re: Rocker-click show the 64-bit context menu?

Post by klownboy »

No CID but there's the script command popupnativecontextmenu. I'm not sure if this menu is what you're after Run,D:\Tools\XYplorer\XYplorer.exe /feed="::popupnativecontextmenu"

Norn
Posts: 504
Joined: 24 Oct 2021 16:10

Re: Rocker-click show the 64-bit context menu?

Post by Norn »

Thanks, I found it, but it would be better for me to create a new menu. ;)
popupcontextmenu <curitem>, 64;
Windows 11 24H2 @100% 2560x1440

klownboy
Posts: 4459
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440

Re: Rocker-click show the 64-bit context menu?

Post by klownboy »

Oops, yes of course. :)

Post Reply