| Author |
Message |
Topic: Keyboard remap Bug help (again) |
lbrtdy
Replies: 4
Views: 924
|
Forum: Ask for Help Posted: Thu Jan 21, 2010 7:18 am Subject: Keyboard remap Bug help (again) |
Ok after fixing the problems, I ran into some minor bugs again
This is currently what I have:
#SingleInstance, force
#NoEnv ; Recommended for performance and compatibility with future AutoHo ... |
Topic: Keyboard remap Bug help (again) |
lbrtdy
Replies: 4
Views: 924
|
Forum: Ask for Help Posted: Thu Jan 21, 2010 2:50 am Subject: Keyboard remap Bug help (again) |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Play ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_Scrip ... |
Topic: Keyboard remap Bug help (again) |
lbrtdy
Replies: 4
Views: 924
|
Forum: Ask for Help Posted: Wed Jan 20, 2010 3:44 am Subject: Keyboard remap Bug help (again) |
Hello Ahk forums again.
A long long time ago, I came to you on how to write a script that remaps the QWERTY keyboard layout to Dvorak except when the modifiers win, ctrl, or alt is held down. Which ... |
Topic: Firefox |
lbrtdy
Replies: 6
Views: 461
|
Forum: Ask for Help Posted: Sun Jul 26, 2009 5:16 pm Subject: Firefox |
I'm willing to bet because that hotkey is used by firefox to trigger the help file. Add * in front of F1 so it becomes a hotkey instead.
*F1::Run C:\Program Files (x86)\AutoHo ... |
Topic: Firefox |
lbrtdy
Replies: 6
Views: 461
|
Forum: Ask for Help Posted: Sat Jul 25, 2009 11:57 pm Subject: Firefox |
| maybe instead of ahk_parent use ahk_class iTunes if the iTunes window is opened? WindowSpy it if you have it in a tool bar. |
Topic: Internet Explorer or Firefox loading state |
lbrtdy
Replies: 1
Views: 310
|
Forum: Ask for Help Posted: Fri Jul 10, 2009 10:04 pm Subject: Internet Explorer or Firefox loading state |
| How do you find when a page is done loading? I remember reading that autohotkey can read the state of internet explorer somewhere, but the search function yields no results. Any point in the right dir ... |
Topic: overriding win + L |
lbrtdy
Replies: 2
Views: 313
|
Forum: Ask for Help Posted: Wed Jun 24, 2009 1:39 am Subject: overriding win + L |
#l::return
 |
Topic: Making the "Windows" key act like the "Alt&qu |
lbrtdy
Replies: 6
Views: 494
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 3:52 pm Subject: Making the "Windows" key act like the "Alt&qu |
No problem  |
Topic: Making the "Windows" key act like the "Alt&qu |
lbrtdy
Replies: 6
Views: 494
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 4:02 am Subject: Making the "Windows" key act like the "Alt&qu |
make a new script and title it whatever.ahk
paste in the contents, and then run it. When you push the key it remaps to another key. And it should already be globally available to all programs. |
Topic: two diferents amounts of clik for a single key |
lbrtdy
Replies: 6
Views: 501
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 3:49 am Subject: two diferents amounts of clik for a single key |
I'm guessing it should be something like this:
#Persistent
MButton::
Loop
{
execute := "1"
GetKeyState, buttonstate, Mbutton, P
if buttonstate = D
press : ... |
Topic: Making the "Windows" key act like the "Alt&qu |
lbrtdy
Replies: 6
Views: 494
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 3:33 am Subject: Making the "Windows" key act like the "Alt&qu |
LWin::Alt
RWin::Alt
Alt::LWin |
Topic: Control of Flow question |
lbrtdy
Replies: 2
Views: 350
|
Forum: Ask for Help Posted: Tue Jun 16, 2009 2:13 am Subject: Control of Flow question |
okay that works, ty. Learning everyday  |
Topic: Control of Flow question |
lbrtdy
Replies: 2
Views: 350
|
Forum: Ask for Help Posted: Tue Jun 16, 2009 1:37 am Subject: Control of Flow question |
Here is my current script:
Loop
{
ControlSend,, 9, Pacific - MysticNuker
Sleep, 1500
ControlSend,, 1, Pacific - MysticSniper
}
Return
*esc::ExitApp
*^m::WinMi ... |
Topic: 5 button mouse remap |
lbrtdy
Replies: 4
Views: 966
|
Forum: Ask for Help Posted: Mon Jun 15, 2009 11:26 pm Subject: 5 button mouse remap |
| okay uninstalled my mouses' own software it ahk works like a charm, thanks! |
Topic: 5 button mouse remap |
lbrtdy
Replies: 4
Views: 966
|
Forum: Ask for Help Posted: Mon Jun 15, 2009 9:09 pm Subject: 5 button mouse remap |
| Yes, and those don't seem to work either. My mouse is a microsoft gaming mouse with 5 buttons. It came with software to put those extra buttons to work, sending custom commands etc, but I would prefer ... |
| |