| Author |
Message |
Topic: VirtualBox steals keys... |
tinaa
Replies: 0
Views: 105
|
Forum: Ask for Help Posted: Sun Nov 29, 2009 12:07 am Subject: VirtualBox steals keys... |
Hi,
I've got Autohotkey running in Windows 7 64bit. I've got a Virtualbox virtual machine running in the background. Even though I've disabled the automatic keyboard grabbing feature for the virtua ... |
Topic: Do WheelLeft and WheelRight work under Windows 7? |
tinaa
Replies: 0
Views: 81
|
Forum: Ask for Help Posted: Sat Nov 21, 2009 10:24 am Subject: Do WheelLeft and WheelRight work under Windows 7? |
I started playing with the WheelLeft and WheelRight keys to try and detect horizontal scroll action from the mouse or mimic it through a send command.
I'm running Windows 7 64bit.
However, when ... |
Topic: Sending Keystrokes to Elevated CMD Window |
tinaa
Replies: 2
Views: 207
|
Forum: Ask for Help Posted: Thu Nov 19, 2009 7:14 pm Subject: Sending Keystrokes to Elevated CMD Window |
For an autohotkey script to interact with any elevated application it has to itself be launched as elevated.
There are a number of ways to do this. You can write a simple batch file to run autohot ... |
Topic: Elevated Permissions in AutoHotkey and the Run command |
tinaa
Replies: 8
Views: 868
|
Forum: Ask for Help Posted: Tue Mar 10, 2009 11:57 am Subject: Elevated Permissions in AutoHotkey and the Run command |
disable UAC
google for how to do it
alternatively, you can decide the permission level while compiling scripts
for that use
I have no interest in disabling UAC as I feel it's a useful securit ... |
Topic: Elevated Permissions in AutoHotkey and the Run command |
tinaa
Replies: 8
Views: 868
|
Forum: Ask for Help Posted: Tue Mar 10, 2009 5:33 am Subject: Elevated Permissions in AutoHotkey and the Run command |
| I've got an Autohotkey script setup to run at login on a Windows Vista machine (now actually running Windows 7 beta). Initially I just put it in the startup folder but found that various hotkeys won't ... |
Topic: Remapping the Fn key - a solution |
tinaa
Replies: 16
Views: 8638
|
Forum: Scripts & Functions Posted: Mon Feb 02, 2009 12:49 am Subject: Remapping the Fn key - a solution |
Hi,
I followed the guide but couldn't get it to work with the built in keyboard on my Macbook Pro (early 2008) in bootcamp. I'm presently running Windows 7 beta. When I run the register utility, I ... |
Topic: right ctrl doesn't work with key combo |
tinaa
Replies: 0
Views: 196
|
Forum: Ask for Help Posted: Tue Aug 19, 2008 7:24 pm Subject: right ctrl doesn't work with key combo |
I have these hotkeys in a script:
, & *left::
send {blind}{home}
return
, & *right::
send {blind}{end}
return
The second one (, & *right) seems to work fine. But the first o ... |
Topic: Calling help with search keyword? |
tinaa
Replies: 4
Views: 204
|
Forum: Ask for Help Posted: Tue Jul 15, 2008 3:58 am Subject: Calling help with search keyword? |
| Well, maybe I'll take a look at some other editors when I have a chance. For now, I think I'll just take a snippit of the Autohotkey script for context help (provided in the help file and here the sam ... |
Topic: Calling help with search keyword? |
tinaa
Replies: 4
Views: 204
|
Forum: Ask for Help Posted: Tue Jul 15, 2008 1:26 am Subject: Calling help with search keyword? |
| Thanks, but I don't think that will work for me since it requires specifying the whole path to the page you want to view. I'll only have the actual keyword, so I need some way to launch hh autohotkey. ... |
Topic: Calling help with search keyword? |
tinaa
Replies: 4
Views: 204
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 11:59 pm Subject: Calling help with search keyword? |
| I just started using Notepad++ and want to set up a macro to launch context sensitive help for Autohotkey. To do this I'd need to call the Autohotkey help with a command line including the search term ... |
Topic: Mouse wheel speed |
tinaa
Replies: 15
Views: 1579
|
Forum: Ask for Help Posted: Mon Jul 14, 2008 11:50 pm Subject: Mouse wheel speed |
Thanks, evl! The dll call seem to have the same effects as TweakUI.
DllCall("SystemParametersInfo", UInt, 0x69, UInt, Scroll_Lines_Accel, UInt, 0, UInt, 0)Now I can set 1-line scrol ... |
Topic: Alt key sticking |
tinaa
Replies: 11
Views: 1809
|
Forum: Ask for Help Posted: Sun May 18, 2008 10:59 am Subject: Alt key sticking |
| I'd have to look at some of my scripts. I can't recall at this point exactly what the issue was just that switching to sendevent seemed to fix the problem. The one exception I've had is trying to map ... |
Topic: Alt key sticking |
tinaa
Replies: 11
Views: 1809
|
Forum: Ask for Help Posted: Sun May 18, 2008 3:14 am Subject: Alt key sticking |
A possible explanation: http://www.autohotkey.com/forum/viewtopic.php?p=87771#87771
Not sure that's the explanation... Unless I totally misunderstood that thread it relates more to what happens whe ... |
Topic: Alt key sticking |
tinaa
Replies: 11
Views: 1809
|
Forum: Ask for Help Posted: Thu May 15, 2008 4:02 pm Subject: Alt key sticking |
I have found that on some of my scripts as well and my workaround is
at bottom of your hotkeys. just before return, add
send {alt up}
It fixed my problems.
Interesting... I've tr ... |
Topic: Alt key sticking |
tinaa
Replies: 11
Views: 1809
|
Forum: Ask for Help Posted: Wed May 14, 2008 11:36 pm Subject: Alt key sticking |
I've noticed the same thing. Have you found a SetKeyDelay value that works reliably on Vista and avoids the stuck Alt problem?
I don't recall ever playing with the SetKeyDelay value. I think it's ... |
| |