You can do it with a AutoHotKey script, which runs always in your comp, taking less than 5 MB of memory:
Code:
clicked=0
Loop
{
If(clicked=0)
{
IfWinExist, Search Results
{
WinActivate
ControlClick, Button8, Search Results
clicked=1
}
}
IfWinNotExist, Search Results
{
clicked=0
}
}
The bold is the window title - you should change it to yours, I did this on XP's search, so its Search Results.
The bold+italic is the checkbox's internal name, which you can find using Autohotkey's window spy. Run it, and move the mouse over your checkbox, and it should display some details. You're looking for this:
Code:
>>>>>>>>>( Now Under Mouse Cursor )<<<<<<<<
ClassNN: Button8
Just replace "Button8" in my script with the button name.
Whenever you open a search page, it clicks the checkbox for you. It doesnt work when you open two searches simultaneously, tell me if you need it, im lazy now
Oh yeah,
www.autohotkey.com has the program you need.