| Author |
Message |
Topic: Up and Down hotkeys not working for Onenote 2007 |
Hotfoot
Replies: 6
Views: 393
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 8:38 am Subject: Up and Down hotkeys not working for Onenote 2007 |
| Thanks. I didn't know about the different Send commands or modes. I found that 'SendPlay' worked for me. |
Topic: Up and Down hotkeys not working for Onenote 2007 |
Hotfoot
Replies: 6
Views: 393
|
Forum: Ask for Help Posted: Thu Feb 15, 2007 7:04 am Subject: Up and Down hotkeys not working for Onenote 2007 |
| I use the below hotkey combinations regularly and they work for all my programs. Recently, I installed Microsoft Onenote 2007 but strangely the 'up' and 'down' hotkeys do not work within Onenote 2007. ... |
Topic: Mouse Key Mapping |
Hotfoot
Replies: 1
Views: 216
|
Forum: Ask for Help Posted: Thu Aug 17, 2006 7:01 am Subject: Mouse Key Mapping |
Your 'backward' and 'forward' keys are called XButton1 and XButton2 in AHK. So you should be able to map it as such:
XButton2::3
or add multiple commands
XButton2::
send,3
sleep, 100
sound ... |
Topic: Nice But Dim! |
Hotfoot
Replies: 9
Views: 2563
|
Forum: Scripts & Functions Posted: Sun May 21, 2006 4:47 am Subject: Nice But Dim! |
For multiple monitors, I added this code at the top of the script:
SysGet, VirtualScreenWidth, 78
SysGet, VirtualScreenHeight, 79
And swapped this line
Gui, Show, x0 y0 h%A_ScreenWidth% w%A_ ... |
Topic: Nice But Dim! |
Hotfoot
Replies: 9
Views: 2563
|
Forum: Scripts & Functions Posted: Sat May 20, 2006 4:56 am Subject: Nice But Dim! |
Cool script.
Just add a command to run Nomousy.exe (saved on computer) upon dimming the screen to hide the mouse. And then run it again to unhide the mouse. Works great.
http://www.autohotkey.co ... |
Topic: Help a beginner with Gui Menu |
Hotfoot
Replies: 6
Views: 544
|
Forum: Ask for Help Posted: Sat Apr 08, 2006 9:56 pm Subject: Help a beginner with Gui Menu |
| I would suggest downloading and using SmartGUI from the Catalog of Scripts section. It will help you create a GUI without coding on your own. You can look at the code afterwards and learn from it. |
Topic: Paste using "lbutton hold+rbutton click..." how ? |
Hotfoot
Replies: 2
Views: 278
|
Forum: Ask for Help Posted: Sat Apr 08, 2006 5:42 am Subject: Paste using "lbutton hold+rbutton click..." how ? |
How about this?
~LButton & RButton::
KeyWait,LButton
send,^v
return
|
Topic: Minimize a window and give it second-from-top order |
Hotfoot
Replies: 3
Views: 329
|
Forum: Ask for Help Posted: Fri Mar 17, 2006 7:10 am Subject: Minimize a window and give it second-from-top order |
| Minimizing a window puts a window as the bottom-most window. Would there be a way to minimize a window but make it the second-from-top in window order? I want to minimize a window and then be able to ... |
Topic: My Gui -- beginner gui |
Hotfoot
Replies: 4
Views: 1928
|
Forum: Scripts & Functions Posted: Tue Feb 28, 2006 7:37 am Subject: My Gui -- beginner gui |
My Gui by Hotfoot
Designed for the end user or beginner. The user can access favorite text clips, text templates, files, folders, and hyperlinks with a GUI (contains 6 tabs and uses mostly listboxe ... |
Topic: submenu |
Hotfoot
Replies: 1
Views: 333
|
Forum: Ask for Help Posted: Thu Nov 17, 2005 7:50 am Subject: submenu |
Try this:
menu, tray, add ; separator
menu, pp, add, Item1
menu, tray, add, pp, :pp
return
Item1:
; your commands here
return
|
Topic: Help, hotkeying 1 key too 4 keystrokes with delays between? |
Hotfoot
Replies: 1
Views: 340
|
Forum: Ask for Help Posted: Sun Oct 16, 2005 8:13 pm Subject: Help, hotkeying 1 key too 4 keystrokes with delays between? |
| Your code seems to be on the right track. You need a 'return' at the end of the sequence of commands for your hotkey -- if you have more than one line for your hotkey sequence. And the sleep timing is ... |
Topic: auto-reload default script on "save" |
Hotfoot
Replies: 5
Views: 452
|
Forum: Ask for Help Posted: Sat Oct 15, 2005 5:07 am Subject: auto-reload default script on "save" |
Just do a search in this forum.
http://www.autohotkey.com/forum/viewtopic.php?t=135auto+reload |
Topic: move Winodows |
Hotfoot
Replies: 15
Views: 5893
|
Forum: Scripts & Functions Posted: Sat Oct 08, 2005 8:57 pm Subject: move Winodows |
Just add the MouseMove command to each hotkey -- after the WinMove command:
; for right
MouseMove, 100,0,,R
; for left
MouseMove, -100,0,,R
; for up
MouseMove, 0, -100, , R
; for down ... |
Topic: Hot Corners |
Hotfoot
Replies: 3
Views: 4656
|
Forum: Scripts & Functions Posted: Fri Sep 16, 2005 7:56 pm Subject: Hot Corners |
I got the idea for this script from someone who wanted a boss/panic feature using only the mouse -- no mouse clicking or keys.
Moving the mouse to a corner of the screen triggers a command/s. Use m ... |
Topic: Loop control |
Hotfoot
Replies: 3
Views: 279
|
Forum: Ask for Help Posted: Thu Sep 15, 2005 12:18 pm Subject: Loop control |
Suspends all hotkeys except those explained the Remarks section.
http://www.autohotkey.com/docs/commands/Suspend.htm |
| |