mouse wheel click open folder in a new tab

Here you can propose new features, make suggestions etc.

Moderators: white, Hacker, petermad, Stefan2

KozakMak
Senior Member
Senior Member
Posts: 352
Joined: 2021-05-24, 12:39 UTC
Location: UA

Re: mouse wheel click open folder in a new tab

Post by *KozakMak »

Fla$her wrote: 2022-09-08, 04:20 UTC The same can be achieved using Autorun.wdx (ControlSetMouseAction).
ha! im using this plugin!
what should i put in the autorun.cfg?
OS: Win10 | TC: latest x64
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

2KozakMak
Have you read petermad's post? There it is not about clicking on a folder in the list.
The area here can only be limited to the active panel:

Code: Select all

ControlSetMouseAction /M 3 SendCommand 3003
Overquoting is evil! 👎
Ziabrev
Junior Member
Junior Member
Posts: 29
Joined: 2022-05-12, 18:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Ziabrev »

2KozakMak
If you want to assign the execution of a command cm_OpenDirInNewTab to a click
on the middle mouse button, apply the script AutoHotkey *.ahk:

Code: Select all

#SingleInstance force
#NoTrayIcon
#IfWinActive ahk_class TTOTAL_CMD
MButton::
SendMessage, 0x433, 3003,,, ahk_class TTOTAL_CMD
return
Compile an executive file, for example - M3003.exe

Place in %COMMANDER_PATH%\Scripts\M3003.exe

autorun.cfg:
ShellExec /SW_HIDE /W /TT "%COMMANDER_PATH%\Scripts\M3003.exe"

There is a finished file M3003.exe
Test this method.
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

2Ziabrev
And what's the point of creating an extra entity in the form of a resident program for 800 KB, if all boils down again to Autorun, where everything is solved with a couple of lines, including LoadLibrary?
Overquoting is evil! 👎
Ziabrev
Junior Member
Junior Member
Posts: 29
Joined: 2022-05-12, 18:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Ziabrev »

2Fla$her
It's not working for me.
Which library is loading - Loadlibrary?
If you could elaborate
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

Ziabrev

Code: Select all

LoadLibrary Plugins\Autorun_Tweaks.dll
Autorun 2.2.4 beta
Overquoting is evil! 👎
User avatar
Horst.Epp
Power Member
Power Member
Posts: 6450
Joined: 2003-02-06, 17:36 UTC
Location: Germany

Re: mouse wheel click open folder in a new tab

Post by *Horst.Epp »

Or Autorun_Tweaks.dll64 if running TC x64
Windows 11 Home x64 Version 23H2 (OS Build 22631.3374)
TC 11.03 x64 / x86
Everything 1.5.0.1371a (x64), Everything Toolbar 1.3.2, Listary Pro 6.3.0.69
QAP 11.6.3.2 x64
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

2Horst.Epp
No. Modules of both architectures fall into the plugin folder during installation. Quote:
For simplicity plugin using and using single config file in different TC versions, for 64-bit verions implicit loading used (similarly to TC plugins). For that 64-bit version of plugin should have «dll64» extension. In configuration «dll» extension using.

Example (on MoveButton): record in configuration «LoadLibrary Plugins\Autorun_MoveButton.dll». Under 32-bit version will be loaded Autorun_MoveButton.dll, under 64-bit version — Autorun_MoveButton.dll64.
Overquoting is evil! 👎
Ziabrev
Junior Member
Junior Member
Posts: 29
Joined: 2022-05-12, 18:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Ziabrev »

2Fla$her
TC x32

Code: Select all

LoadLibrary Plugins\Autorun_Tweaks.dll
ControlSetMouseAction /M3 SendCommand 3003
Is this supposed to work?
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

Ziabrev wrote: 2022-09-10, 18:39 UTCIs this supposed to work?
And where is the space after /M?
Overquoting is evil! 👎
User avatar
jinsight
Senior Member
Senior Member
Posts: 299
Joined: 2003-02-25, 19:47 UTC
Location: Wooster, Ohio, USA

Re: mouse wheel click open folder in a new tab

Post by *jinsight »

Support++ the suggestion by petermad

Support for a more fully developed general feature of control over mouse inputs, such as:
1. feature to assign a cm_command or em_command to the mouse wheel click
2. support modifier keys Shift, Ctrl, Alt and/or Win for the mouse wheel (or middle) click.

I consider a third party program, such as TwinKey, or a plugin, such as Autorun.wdx, a stopgap in assigning values to mouse clicks. This feature should be a default and built in to TC. From within TC, keystrokes can be assigned values. so should mouse clicks. TC doesn't use plugins for assigning values to keystrokes so TC shouldn't use plugins for mouse click values.
Last edited by jinsight on 2022-09-10, 20:23 UTC, edited 1 time in total.
License #1945
Windows 10 Pro x64
Version 22H2 (OS Build 19045.3930)
TC 11.00 x64 and x86, Everything 1.5.0.1366a x64, QAP 11.6.3.1 x64
Ziabrev
Junior Member
Junior Member
Posts: 29
Joined: 2022-05-12, 18:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Ziabrev »

2Fla$her
There's no space except in this post.
It's not working.
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

jinsight wrote: 2022-09-10, 19:24 UTC This feature should be a default and built-in. TC doesn't use plugins for keyboard so TC ought not to do so for mouse input.
For a long time you will have to wait for the implementation of what has already been implemented.
jinsight wrote: 2022-09-10, 19:24 UTCTC doesn't use plugins for keyboard so TC ought not to do so for mouse input.
I don't understand what you mean. How it "ought not", if this is the essence of petermad's request?

Ziabrev wrote: 2022-09-10, 19:29 UTC There's no space except in this post.
It's not working.
What exactly is not working?
What does the space in the post have to do with it? You have an error in your code — there is no space symbol " " between /M and 3.
Overquoting is evil! 👎
Ziabrev
Junior Member
Junior Member
Posts: 29
Joined: 2022-05-12, 18:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Ziabrev »

2Fla$her

Code: Select all

LoadLibrary Plugins\Autorun_Tweaks.dll
ControlSetMouseAction /M 3 SendCommand 3003
Autorun plugin Version 2.1.1.0
Fla$her
Power Member
Power Member
Posts: 2244
Joined: 2020-01-18, 04:03 UTC

Re: mouse wheel click open folder in a new tab

Post by *Fla$her »

Ziabrev wrote: 2022-09-10, 19:52 UTCAutorun plugin Version 2.1.1.0
>>>
Fla$her wrote: 2022-09-10, 17:38 UTCAutorun 2.2.4 beta
Download
Overquoting is evil! 👎
Post Reply