What the title says.
Basically the way it does with Filters when you have View > Filters Bar turned on.
Right now with Mouseover the Search text field, scroll wheel just scrolls through the search results, and there is plenty of screen real estate to scroll through them anyway.
Move through history with Scroll Wheel when Mouseover the Search text field
-
- Posts: 54
- Joined: Wed Feb 12, 2020 5:03 am
Re: Move through history with Scroll Wheel when Mouseover the Search text field
I will consider an option to scroll through search history.
Thank you for the suggestion.
For now, please try Alt + mousewheel to scroll through navigation history.
Thank you for the suggestion.
For now, please try Alt + mousewheel to scroll through navigation history.
-
- Posts: 54
- Joined: Wed Feb 12, 2020 5:03 am
Re: Move through history with Scroll Wheel when Mouseover the Search text field
Thanks David, I wasn't aware of the Alt+Wheel trick, it's quite handy. Always learning something new here!
-
- Posts: 214
- Joined: Mon Jan 09, 2012 10:56 am
Re: Move through history with Scroll Wheel when Mouseover the Search text field
many-many months ago i wrote an ahk-code that allows me to go back/forward in the history of ET
when i scroll down/up above the search-edit field
when i scroll down/up above the search-edit field
Code: Select all
#If MouseIsOverControl("Edit1") && (MouseIsOver("ahk_exe Everything.exe"))
WheelDown::
if a_timesincepriorhotkey > 100
count = 0
count++
If (count < 2)
{
PostMessage, 0x111, 40040,,, A
}
return
#If
#If MouseIsOverControl("Edit1") && (MouseIsOver("ahk_exe Everything.exe"))
WheelUp::
if a_timesincepriorhotkey > 100
count = 0
count++
If (count < 2)
{
PostMessage, 0x111, 40041,,, A
}
return
#If
-
- Posts: 690
- Joined: Wed Jun 01, 2022 5:01 pm
Re: Move through history with Scroll Wheel when Mouseover the Search text field
I think I also already suggested this scrolling feature [without having to use use Alt]
I get
Are you sure it works? On which version?adamantine wrote: ↑Mon Mar 13, 2023 10:26 pm many-many months ago i wrote an ahk-code that allows me to go back/forward in the history of ET
when i scroll down/up above the search-edit field
[...]
I get
Code: Select all
Error: Call to nonexistent function.
Specifically: MouseIsOverControl("Edit1") && (MouseIsOver("ahk_exe Everything.exe"))
Line#
---> 001: #If,MouseIsOverControl("Edit1") && (MouseIsOver("ahk_exe Everything.exe"))
002: Return
003: if a_timesincepriorhotkey > 100
004: count = 0
005: count += 1
006: if (count < 2)
007: {
008: PostMessage,0x111,40040,,,A
-
- Posts: 214
- Joined: Mon Jan 09, 2012 10:56 am
Re: Move through history with Scroll Wheel when Mouseover the Search text field
yes, i use it nearly every day (sometimes - dozens of times a day)Are you sure it works?
et: 1.5.0.1319a (x86)On which version?
ahk: 1.1.28.2
(in my main huge ahk-script) (several thousands of lines) i also have the following codes:
Code: Select all
MouseIsOverControl(classNN) {
MouseGetPos,,,, currentClassNN
return InStr(classNN, currentClassNN)
}
Code: Select all
MouseIsOver(WinTitle)
{
MouseGetPos,,, Win
Return WinExist(WinTitle . " ahk_id " . Win)
return
}