| Author |
Message |
Topic: Assign key in Mozilla Thunderbird |
Carlol
Replies: 2
Views: 14
|
Forum: Ask for Help Posted: Fri Dec 05, 2008 3:49 pm Subject: Assign key in Mozilla Thunderbird |
Perhaps something like this:
#IfWinActive, ahk_class MozillaUIWindowClass
Esc::Del
Return
#IfWinActive
 |
Topic: Keyboard Shortcut for Different Windows |
Carlol
Replies: 4
Views: 73
|
Forum: Ask for Help Posted: Thu Nov 20, 2008 6:06 pm Subject: Keyboard Shortcut for Different Windows |
Perhaps something like this:
#IfWinActive, ahk_class XLMAIN
!F11::
Send, !{F11}
Return
#IfWinActive
Good luck  |
Topic: Closing active tab in firefox, else close window.. help! |
Carlol
Replies: 2
Views: 89
|
Forum: Ask for Help Posted: Thu Nov 13, 2008 11:27 am Subject: Closing active tab in firefox, else close window.. help! |
To get you started it could look something like this:
#IfWinActive, ahk_class MozillaUIWindowClass
NumpadAdd::^+
Return
#IfWinActive
Meaning that plus on the numpad will send ctrl +, ... |
Topic: How can I create a hotkey to insert spanish characters? |
Carlol
Replies: 3
Views: 108
|
Forum: Ask for Help Posted: Sun Oct 19, 2008 4:40 pm Subject: How can I create a hotkey to insert spanish characters? |
You could try this:
:R*?:jja::á
:R*?:jje::é
meaning you type jja and you get á etc.
Good luck  |
Topic: why CTRL key always pressed after running my hotkey script? |
Carlol
Replies: 3
Views: 106
|
Forum: Ask for Help Posted: Fri Oct 17, 2008 5:40 am Subject: why CTRL key always pressed after running my hotkey script? |
What exactly does it do?
See I have a similar problem with the ctrl key "hanging" and I was thinking that with a loop and a getkeystate, one could make Autohotkey watch, and if the key s ... |
Topic: Want to make Reassigned key play a click sound when pressed |
Carlol
Replies: 2
Views: 112
|
Forum: Ask for Help Posted: Sun Oct 12, 2008 5:59 am Subject: Want to make Reassigned key play a click sound when pressed |
As an example: I've put sound on my delete key
Del::
SoundPlay, C:\Users\Kadence\Music\click.wav
Send, {Del}
Return
or
PgUp::
Send, RButton
SoundPlay, C: ... |
Topic: how to assign hotkey |
Carlol
Replies: 4
Views: 119
|
Forum: Ask for Help Posted: Sun Oct 12, 2008 4:49 am Subject: how to assign hotkey |
As an example:
#!n::
Run, Notepad
WinWait, Untitled - Notepad
Winshow, Untitled - Notepad
Winactivate, Untitled - Notepad
Return
Is what I use to start Notepad  |
Topic: how to assign hotkey |
Carlol
Replies: 4
Views: 119
|
Forum: Ask for Help Posted: Sun Oct 12, 2008 4:46 am Subject: how to assign hotkey |
Try something like this:
#z::
Run, Process, Wait, FineReader.exe
Run, Process, Close, FineReader.exe
Return
Good luck to you  |
Topic: AHT: A bit overkill for my needs but it works |
Carlol
Replies: 2
Views: 220
|
Forum: Ask for Help Posted: Sat Oct 11, 2008 12:41 pm Subject: AHT: A bit overkill for my needs but it works |
And now when you have it installed, why not explore the countless possibilities in AHK You will not regret it ! I promise  |
Topic: Will autohotkey let me assign some keys for å,æ and ø |
Carlol
Replies: 9
Views: 253
|
Forum: Ask for Help Posted: Sun Sep 28, 2008 4:41 pm Subject: Will autohotkey let me assign some keys for å,æ and ø |
Or something like this:
:R*?:jjp::ø
meaning you type jjp and get ø
 |
Topic: Will autohotkey let me assign some keys for å,æ and ø |
Carlol
Replies: 9
Views: 253
|
Forum: Ask for Help Posted: Sun Sep 28, 2008 4:29 pm Subject: Will autohotkey let me assign some keys for å,æ and ø |
You could also consider remapping like this:
[::å
'::ø
$`;::æ
 |
Topic: how to create ahk files |
Carlol
Replies: 5
Views: 145
|
Forum: Ask for Help Posted: Sat Sep 20, 2008 3:50 pm Subject: how to create ahk files |
Why not just make a script in notepad, and then rename it, or if you like, save it with the file ending .ahk  |
Topic: not able to work with hotkeys |
Carlol
Replies: 4
Views: 203
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 11:15 am Subject: not able to work with hotkeys |
Here's an example of very simple script:
^!h::Run C:\Program Files\AutoHotkey\AutoHotkey.chm
^=ctrl, !=alt (meaning control+alt+h will open the help file!)
 |
Topic: Open Application. |
Carlol
Replies: 4
Views: 166
|
Forum: Ask for Help Posted: Tue Mar 04, 2008 5:15 pm Subject: Open Application. |
I'm not sure I understand your idea, do you want the script just to contain/hold this code, and then you want to double click the document, executing the code... and shutting down?  |
Topic: Open Application. |
Carlol
Replies: 4
Views: 166
|
Forum: Ask for Help Posted: Tue Mar 04, 2008 3:10 pm Subject: Open Application. |
#^m::
Run C:\Program Files\PI Engineering\MacroWorks II
Return
meaning windows + ctrl +m will open your app.  |
| |