I'm using QTTabBar v1.2.3 Beta5 on WinXP_Pro_sp3,
and was excited to see this script (from another thread) to auto-raise/auto-click the folder tabs in QTTabBar
(I changed the WindowsForms... number with what my Windows Spy shows):
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
IfWinActive, ahk_class ExploreWClass
{
MouseGetPos,,, win, ctl
WinGetTitle, ti, ahk_id %win%
WinGetClass, cl, ahk_id %win%
if (ctl = "WindowsForms10.Window.8.app.0.378734a7")
{
click
return
}
}
... but this script doesn't even run when I click it - I've tried changing things within it,
tried adding IfWinActive to the end of it, but still no go.
This would really help eliminate some RSI from multiple mouse clicks,
and when I understand how the code works I will try to make it work also with xplorer2 tabs,
as well as some of the other Menu bar buttons.
I've tried using Skrommel's "MouseActivate" from DonationCoder, and really like the whole idea of it,
but it's a little too much when the mouse auto-clicks nearly every thing in a window,
so I'm trying to understand how to just make this kind of functionality focus on a couple of items at a time.
In that same way, I adapted Lexicos' Auto-Raise/Mouse Hover
Quote:
to only work on the Start button by eliminating everything else in the code that I didn't need.
I also like the ability in Lexicos' code to change the speed of the response -
shortening the time delay as I get used to the actions.
Thanks very much for any help to accomplish this.