topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 2, 2026, 9:35 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: [1]
1
Post New Requests Here / Re: Alt-Tab with mouse
« Last post by nilness on December 27, 2005, 10:11 PM »
WARNING!

These 3 lines caused severe trouble in Firefox, like cloing two tabs when clicking with the middle mouse button on one etc. - I was very puzzled at first, until I remembered I added this to my AutoHotkey.ini  :(


Interesting. It works perfectly for me as coded (on a plain vanilla XP system). Could you give me any information about your specific software configuration? Your comment about the ALT-TAB function being 'tricky' leads me to believe that you have Alt-Tab "extender" software installed. As for the repeat clicks in Firefox, I am not getting that but I suppose you could just try disabling the third line of code by adding a semi-colon in front like this:

;MButton::Mouseclick, Middle         ;Pass on plain mousewheel clicks

and see if that works. Also, what brand of mouse/mouse software do you have?

As a point of interest, I was expecting someone else to take this idea and run with it hence the bare-bones nature of the code. I suppose I could work on it a bit more - schedule and mightily neglected girlfriend permitting.
2
Post New Requests Here / Re: Alt-Tab with mouse
« Last post by nilness on November 20, 2005, 12:24 AM »
If you've got AutoHotkey installed (http://www.autohotkey.com/) then this is pretty simple to do. Copy this little piece of code and save it as MouseAltTab.ahk. Double click it and you've got Alt-Tab functionality with the mousewheel button.

; Mousewheel Alt-Tab

MButton & WheelUp::ShiftAltTab   ;Mousewheel click-hold + wheel scroll up equals Shift-Alt-Tab
MButton & WheelDown::AltTab     ;Mousewheel click-hold + wheel scroll down equals Alt-Tab
MButton::Mouseclick, Middle         ;Pass on plain mousewheel clicks
3
Finished Programs / Re: ARGH!!!! How To Save View In Open/Save Dialog???
« Last post by nilness on November 13, 2005, 10:13 AM »
I use Viewtify from Cognitive Software. Tiny (~400K) memory footprint and it allows different views per application although you have to live with editing an .ini file to customize it. No webpage but here's a link to the zip: http://www.cognitive-software.com/Downloads/Viewtify.zip
4
Finished Programs / Re: IDEA: timed alt+tab through active windows
« Last post by nilness on July 16, 2005, 08:35 PM »
AnalogX (www.analogx.com) made the program AutoTab several years ago for The Screen Savers. It may be what you're looking for.
Pages: [1]