Page 6 of 7
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-16, 09:56 UTC
by KozakMak
https://ibb.co/wM957dw
doubleclick with mouse wheel on tooltip
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-16, 12:53 UTC
by Fla$her
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.
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-16, 13:53 UTC
by white
Fla$her wrote: 2022-10-16, 12:53 UTC
The link is non-working.
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
Posted: 2022-10-16, 14:08 UTC
by Fla$her
2
white
Thanks, now I see.
2
KozakMak
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.
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-23, 23:40 UTC
by Fla$her
2
KozakMak
Upgrade to 2.2.9 and
replace Tweaks.
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-24, 05:31 UTC
by KozakMak
https://ibb.co/hm9bdk5
works.
...and add draw glitch?
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-24, 05:35 UTC
by Fla$her
Is this on what Windows version and with what theme?
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-24, 06:54 UTC
by KozakMak
on win7 (basic) and on win10
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-24, 15:56 UTC
by Fla$her
KozakMak wrote: 2022-10-24, 06:54 UTCon win7 (basic)
I can't reproduce it. At least if Enter is pressed and some program is activated.
Check with
the replacement.
KozakMak wrote: 2022-10-15, 07:19 UTCnow double-click mouse wheel on the tooltip = Enter
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.
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-26, 20:53 UTC
by Fla$her
2KozakMak
So what? Replacement didn't help?
Re: mouse wheel click open folder in a new tab
Posted: 2022-10-27, 05:05 UTC
by KozakMak
now everything is ok
Re: mouse wheel click open folder in a new tab
Posted: 2023-03-29, 05:54 UTC
by KozakMak
2
Fla$her
for i use
Can it be filtered for custom extensions? For example, for .exe - show exe.BAR, for .jpg, .png - show image.BAR ?
Re: mouse wheel click open folder in a new tab
Posted: 2023-03-29, 07:37 UTC
by Fla$her
2
KozakMak
/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
Re: mouse wheel click open folder in a new tab
Posted: 2023-03-29, 08:07 UTC
by KozakMak
Fla$her wrote: 2023-03-29, 07:37 UTC
/I:16 looks pointless
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
full code looks like this? It doesnt show menu on files
Re: mouse wheel click open folder in a new tab
Posted: 2023-03-29, 08:35 UTC
by Fla$her
KozakMak wrote: 2023-03-29, 08:07 UTCwithout that there is no icons in menu
I haven't really woken up yet. Confused /I with /A.
KozakMak wrote: 2023-03-29, 08:07 UTCIt doesnt show menu on files
The path should be framed in apostrophes or quotation marks:
ShowPopupMenu /I:16 '%COMMANDER_PATH%\Buttonbar\CLICK.BAR'