mouse wheel click open folder in a new tab
Moderators: Hacker, petermad, Stefan2, white
Re: mouse wheel click open folder in a new tab
OS: Win10 | TC: latest x64
Re: mouse wheel click open folder in a new tab
The link is non-working.
Does your tooltip disappear after the first click? I don't have. Therefore, no doubleclick works. Maybe it's a feature of your theme, I don't know.
It is possible to kill or hide a tooltip, but there is not enough functionality for this. If something suitable appears in the next beta, I'll let you know.
Does your tooltip disappear after the first click? I don't have. Therefore, no doubleclick works. Maybe it's a feature of your theme, I don't know.
It is possible to kill or hide a tooltip, but there is not enough functionality for this. If something suitable appears in the next beta, I'll let you know.
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
The imgbb site seems to be down. Direct links to the images themselves (like I used) do still work.
Edit: Site is up again.
Re: mouse wheel click open folder in a new tab
2white
Thanks, now I see.
2KozakMak
The screencast does not show that there are two clicks. But it's amazing how something works at all when clicking on the tooltip.
It works for me only in his absence.
Add: Understood. This happens only on TC x64.
Thanks, now I see.
2KozakMak
The screencast does not show that there are two clicks. But it's amazing how something works at all when clicking on the tooltip.

Add: Understood. This happens only on TC x64.
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
2KozakMak
Upgrade to 2.2.9 and replace Tweaks.
Upgrade to 2.2.9 and replace Tweaks.
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
OS: Win10 | TC: latest x64
Re: mouse wheel click open folder in a new tab
Is this on what Windows version and with what theme?
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
on win7 (basic) and on win10
OS: Win10 | TC: latest x64
Re: mouse wheel click open folder in a new tab
I can't reproduce it. At least if Enter is pressed and some program is activated.
Check with the replacement.
There is no equality. Before pressing Enter, you need to select the desired panel, and then go to the desired object in the list. It's a bit more than just An Enter.
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
2KozakMak
So what? Replacement didn't help?
So what? Replacement didn't help?
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
2Fla$her
for i use
Can it be filtered for custom extensions? For example, for .exe - show exe.BAR, for .jpg, .png - show image.BAR ?
for
Code: Select all
SendCommand 1001
Code: Select all
ShowPopupMenu /I:16 CLICK.BAR
OS: Win10 | TC: latest x64
Re: mouse wheel click open folder in a new tab
2KozakMak
/I:16 looks pointless for a mouse click. What is the relationship between the mouse cursor and the function keys panel?
/I:16 looks pointless for a mouse click. What is the relationship between the mouse cursor and the function keys panel?
Code: Select all
Switch StrLower(StrRight(ItemAtCursor('text'), 4))
Case '.exe'
ShowPopupMenu exe.BAR
Case '.jpg', '.png'
ShowPopupMenu image.BAR
EndSwitch
Last edited by Fla$her on 2023-03-29, 08:24 UTC, edited 1 time in total.
Overquoting is evil! 👎
Re: mouse wheel click open folder in a new tab
without that there is no icons in menu
Code: Select all
LoadLibrary Plugins\Autorun_Runtime.dll
LoadLibrary Plugins\Autorun_Tweaks.dll
ControlSetMouseAction /M 1 OpenDirInNewTabElseEnter
ControlSetMouseAction /M 2 OpenDirInNewTabElseEnter
Func OpenDirInNewTabElseEnter
I = ItemAtCursor('index')
If I >= 0 Then
F = RequestInfo(1010 + ItemAtCursor('panel'))
If ItemAtCursor('panel') <> RequestInfo(1000) Or Not ItemAtCursor('focused') Then MouseClick
If ItemAtCursor('focused') Then
If F > I Or F = -1 Then
SendCommand 3003
Else
Switch StrLower(StrRight(ItemAtCursor('text'), 4))
Case '.exe'
ShowPopupMenu /I:16 %commander_path%\Buttonbar\CLICK.BAR
Case '.jpg', '.png'
ShowPopupMenu /I:16 %commander_path%\Buttonbar\IRFAN.BAR
EndSwitch
EndIf
EndIf
EndIf
EndFunc
OS: Win10 | TC: latest x64
Re: mouse wheel click open folder in a new tab
I haven't really woken up yet. Confused /I with /A.
The path should be framed in apostrophes or quotation marks:
ShowPopupMenu /I:16 '%COMMANDER_PATH%\Buttonbar\CLICK.BAR'
Overquoting is evil! 👎