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 »

https://ibb.co/wM957dw

doubleclick with mouse wheel on tooltip
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 »

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.
Overquoting is evil! 👎
User avatar
white
Power Member
Power Member
Posts: 4593
Joined: 2003-11-19, 08:16 UTC
Location: Netherlands

Re: mouse wheel click open folder in a new tab

Post 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.
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 »

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. :shock: It works for me only in his absence.
Add: Understood. This happens only on TC x64.
Overquoting is evil! 👎
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
Upgrade to 2.2.9 and replace Tweaks.
Overquoting is evil! 👎
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 »

https://ibb.co/hm9bdk5

works.
...and add draw glitch?
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 »

Is this on what Windows version and with what theme?
Overquoting is evil! 👎
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 »

on win7 (basic) and on win10
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 »

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.
Overquoting is evil! 👎
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
So what? Replacement didn't help?
Overquoting is evil! 👎
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 »

now everything is ok
OS: Win10 | TC: latest x64
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 »

2Fla$her
for

Code: Select all

SendCommand 1001
i use

Code: Select all

ShowPopupMenu /I:16 CLICK.BAR
Can it be filtered for custom extensions? For example, for .exe - show exe.BAR, for .jpg, .png - show image.BAR ?
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
/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! 👎
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: 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
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 »

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'
Overquoting is evil! 👎
Post Reply