| Author |
Message |
Forum: Support Topic: Multi-button mice and KVMs |
| catapult |
|
Posted: June 30th, 2006, 6:50 am
|
|
Replies: 11 Views: 1736
|
| Well, the mechanical KVM was almost guaranteed to work as it only switches which wires are physically connected. Mechanical KVMs can also be used 'backward' hooking up two keyboards and two mice to a single computer. I wish I had one. As far as buttons four and five working, there are some PS/2 KVM... |
|
 |
Forum: Support Topic: Multi-button mice and KVMs |
| catapult |
|
Posted: April 18th, 2006, 7:43 pm
|
|
Replies: 11 Views: 1736
|
| If that's the case, then it is exactly the problem I had, and I did find a solution for me, and ahk was a part of that solution. I wanted to know more details of Marius' setup and exactly what he is trying to do, and I think I may be able to help. |
|
 |
Forum: Support Topic: Multi-button mice and KVMs |
| catapult |
|
Posted: April 18th, 2006, 8:04 am
|
|
Replies: 11 Views: 1736
|
Marius wrote: cool but...... it wont work for me either because its a USB supported KVM (never did see such a KVM yet) or because I am using M$ intellipoint mouse.
It's been a long day, so excuse me if it's obvious, but I can't quite make sense of what you are trying to do, and what the problem is. |
|
 |
Forum: Support Topic: ~ doesn't work with shift hotkey |
| catapult |
|
Posted: July 23rd, 2005, 5:19 pm
|
|
Replies: 1 Views: 635
|
| The hotkey *~Shift:: doesn't fire when Shift + a is pressed, it only fires when Shift is pressed and released. Is there a way to have a hotkey fire when Shift is pressed, regradless of whether or not "a" is pressed before shift is released? ------------------------------- On the flipside, the hotkey... |
|
 |
Forum: Support Topic: How to count keys and buttons |
| catapult |
|
Posted: July 16th, 2005, 7:48 pm
|
|
Replies: 5 Views: 783
|
| I'm guessing that this has not been made easy to script due to the potiential of a script like that being easily modified into a key logger... I wouldn't have thought of that, but it may be useful as well. I am doing this in preparation for remapping the keys on my Twiddler2. I want to put my most ... |
|
 |
Forum: Support Topic: How to count keys and buttons |
| catapult |
|
Posted: July 16th, 2005, 5:54 pm
|
|
Replies: 5 Views: 783
|
| There are surely more elegant ways to do this. That's what I'm hoping for ;-) Brute force would be a long script. Over a hundred keys and mouse buttons, then all the modifier combinations of those keys (SHIFT, ALT, CTRL, WIN, SHIFT+ALT, SHIFT+CTRL, ....) I would probably end up writing a perl scrip... |
|
 |
Forum: Support Topic: How to count keys and buttons |
| catapult |
|
Posted: July 15th, 2005, 2:38 am
|
|
Replies: 5 Views: 783
|
Has someone already written a script that counts the number of times each key and mouse button is pressed?
I want to measure the relative frequency of how often I press each key on the keyboard and each button on the mouse. |
|
 |
Forum: Support Topic: I put my Xbutton1 as alt, it works but not in every progr |
| catapult |
|
Posted: July 13th, 2005, 3:13 pm
|
|
Replies: 6 Views: 702
|
Chris wrote: This should do it:
Xbutton1:: send {LAlt DOWN} KeyWait XButton1 ; Wait for the user to release the button. send {LAlt UP} return
I'm curious why AHK seems to prefer the above over:
Xbutton1::send {LAlt DOWN}
Xbutton1 up::send {LAlt UP} |
|
 |
Forum: Support Topic: remap special buttons on mouse (logitech) |
| catapult |
|
Posted: July 12th, 2005, 3:01 am
|
|
Replies: 6 Views: 1054
|
| The extra buttons on my Microsoft mouse aren't supported by ahk's hotkeys too so I don't think there's a way to do it yet. That's odd. Works for me. With Windows 2000, and a Microsoft Intellimouse Explorer, AHK sees the forward and back thumb buttons as X1 and X2. It also sees the top buttons on my... |
|
 |
Forum: Offtopic Topic: AHK in Linux? |
| catapult |
|
Posted: July 12th, 2005, 2:47 am
|
|
Replies: 85 Views: 43105
|
| That is strange, I haven't found anything either... Are there any plans of converting AHK to Linux? I never used it, but I remember a web page that described how to pop up a cheat sheet in Linux. By pressing a certian key combination, a wndow popped up to show the chording keymap for the Twiddler. ... |
|
 |
Forum: Support Topic: How differentiate real button press vs. autohotkey "pre |
| catapult |
|
Posted: July 12th, 2005, 2:39 am
|
|
Replies: 12 Views: 2025
|
| Here are a few things that might indirectly answer your questions. Firstly, I don't think there's a way to change the state of a mouse button (down or up) without the system being aware that you did it. Similarly, if there is an active window at the time of the state change, it will also be made aw... |
|
 |
Forum: Support Topic: How differentiate real button press vs. autohotkey "pre |
| catapult |
|
Posted: July 1st, 2005, 5:27 am
|
|
Replies: 12 Views: 2025
|
| I've tried a few more things, and I suppose that I might be able to get of some of what I want with some combination of using the flag, and having different hotkeys for different windows. But it's a bit much to work through, and each time I use a new application I may have to rewrite the script. I d... |
|
 |
Forum: Support Topic: Adressing Mouse Buttons correctly |
| catapult |
|
Posted: June 29th, 2005, 5:03 pm
|
|
Replies: 17 Views: 3071
|
| I don't think so because a prefix key such as XButton1 will fire it's naked counterpart (XButton1::) upon release rather than upon press-down of XButton1. This behavior is described on the hotkeys page . Thanks for the tip, that may be why some of my scripts didn't work the way I expected. I'll re-... |
|
 |
Forum: Support Topic: How differentiate real button press vs. autohotkey "pre |
| catapult |
|
Posted: June 29th, 2005, 4:59 pm
|
|
Replies: 12 Views: 2025
|
| Rather than setting a flag, you might find it easier to have a timer that selectively disables RButton hotkeys depending on which type of window is active. If I only wanted to fix this behaviour in some windows, I might take that approach. However, I always want right + left to be double left click... |
|
 |
Forum: Support Topic: Adressing Mouse Buttons correctly |
| catapult |
|
Posted: June 29th, 2005, 5:34 am
|
|
Replies: 17 Views: 3071
|
| left + right would be middle click Oops, I meant double click, but pretty much the same thing, just change MouseClick Midde to two MouseClick Lefts. The following seems to work: ~LButton & RButton::MouseClick Middle ; Seems to have problems in some apps like MSIE. Yeah, but having the ~ means t... |
|
 |
| Sort by: |