| Author |
Message |
Topic: simple questiona about killing a process |
Carlol
Replies: 1
Views: 209
|
Forum: Ask for Help Posted: Mon Jun 21, 2010 10:38 am Subject: simple questiona about killing a process |
g::
Process close, demul.exe
Return
 |
Topic: How to copy without Ctrl+c |
Carlol
Replies: 10
Views: 670
|
Forum: Ask for Help Posted: Sun Jul 26, 2009 7:53 am Subject: How to copy without Ctrl+c |
Try this:
;AUTOCOPY TO CLIPBOARD=============================================
~Lshift::
TimeButtonDown = %A_TickCount%
; Wait for it to be released
Loop
{
Sleep 10
GetK ... |
Topic: Left Ctrl / Right Alt key "stuck" - SOLVED |
Carlol
Replies: 4
Views: 12507
|
Forum: Ask for Help Posted: Thu Dec 25, 2008 3:36 pm Subject: Left Ctrl / Right Alt key "stuck" - SOLVED |
Thanks for the educating input  |
Topic: Assign key in Mozilla Thunderbird |
Carlol
Replies: 5
Views: 616
|
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: 2
Views: 1492
|
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: 1117
|
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: 485
|
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: 563
|
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: 470
|
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: 538
|
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: 538
|
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: 579
|
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: 973
|
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: 973
|
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: 947
|
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  |
| |