| Author |
Message |
Topic: network connection monitering in Autohotkey GUI? |
Sivvy
Replies: 1
Views: 202
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 4:25 pm Subject: network connection monitering in Autohotkey GUI? |
Ownership.
Here are a few lines of code from an incomplete script I stopped writing that steals the Windows TaskBar and places it onto my own GUI (Among other things, but all you really need is the ... |
Topic: Pauses |
Sivvy
Replies: 6
Views: 184
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 3:57 pm Subject: Pauses |
Sleep must be on a separate line, because otherwise your actually issuing a Windows command for sleep, rather than the AHK one.
#Space::
Loop 2
{
Send, {Tab 8 ... |
Topic: Hotkeys will not work |
Sivvy
Replies: 6
Views: 212
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 3:49 pm Subject: Hotkeys will not work |
| If you're sure that the program works, and you don't want it in the tray, Add #NoTrayIcon to the top of the code in the script, then move the script to "C:\Documents and Settings\"Your Windo ... |
Topic: Math question for script coordinates with diff resolutions |
Sivvy
Replies: 7
Views: 377
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 3:42 pm Subject: Math question for script coordinates with diff resolutions |
Have you looked at the AHK built-in variables? %A_ScreenWidth% and %A_ScreenHeight%...
If you want it to be able to "Convert", you'll need to use variables. Something like MouseMove, 677, ... |
Topic: Press and Release Script with Logitech G13/15 - how to hook? |
Sivvy
Replies: 2
Views: 220
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 3:25 pm Subject: Press and Release Script with Logitech G13/15 - how to hook? |
Use a Hook to get the VK... The HelpFile can show you how to do both.
When using the keyboard, it probably converts the G keys using software, but the key itself still sends it's Vitrual Key, rathe ... |
Topic: Help to make my script clean :) |
Sivvy
Replies: 3
Views: 204
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 3:20 pm Subject: Help to make my script clean :) |
Continued from "Evan":
+!L::
a++
If a = 1
MuteWinamp()
Else If a = 2
MuteMaster()
Else If a = 3
{
MuteMast ... |
Topic: installed auto hot keys but doesnt work in DOTA (vista) |
Sivvy
Replies: 22
Views: 4501
|
Forum: Ask for Help Posted: Wed Feb 11, 2009 3:09 pm Subject: installed auto hot keys but doesnt work in DOTA (vista) |
| It's called Vista's "UAC". If you do a quick google on disabling the UAC, you'll find tons of topics. There is an easy Registry Hack that does it as well... And rather than disabling the sys ... |
Topic: How to block a keys usage |
Sivvy
Replies: 6
Views: 511
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 8:37 pm Subject: How to block a keys usage |
Some games actually prevent AHK from modifying keys...
#IfWinExist, GTA
F4::Return
#IfWinExist
Maybe just give this a try. |
Topic: Merging Scripts With Difficulty! |
Sivvy
Replies: 4
Views: 341
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 5:29 pm Subject: Merging Scripts With Difficulty! |
mwt_MaxWindows = 50
mwt_Hotkey = #h ; Win+H
mwt_UnHotkey = #u ; Win+U
#HotkeyModifierTimeout 100
SetWinDelay 10
SetKeyDelay 0
#SingleInstance
Hotkey, %mwt_Hotkey%, mwt_Minimize
Hotkey, ... |
Topic: ControlGet not retrieving text |
Sivvy
Replies: 4
Views: 439
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 5:12 pm Subject: ControlGet not retrieving text |
| I tested it with something I use, and it worked fine... Maybe the Control name or Wintitle are incorrect. Make sure to check those again, and try making it display in a MsgBox instead. That will allow ... |
Topic: How to block a keys usage |
Sivvy
Replies: 6
Views: 511
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 5:01 pm Subject: How to block a keys usage |
#IfWinActive, San Andreas ; Put the actual name of the window here.
F4::
#IfWinActive |
Topic: Needed help |
Sivvy
Replies: 12
Views: 362
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 4:32 pm Subject: Needed help |
| Question seems a little odd for this topic, but yes. It's the "WinText" parameter close to the "WinTitle" parameter on each command. Use "WinGetText" to retrieve the actu ... |
Topic: Question | How to make the bot click? |
Sivvy
Replies: 2
Views: 422
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 3:49 pm Subject: Question | How to make the bot click? |
MsgBox, 4, ,Click Yes To Get Into The Bot
IfMsgBox, No
return
; Otherwise, the user picked yes.
MsgBox Press Here To Start Bot.
IfWinExist Fa
{
WinActivate
}
Else
{
... |
Topic: Help, my script won't wait for commands to finish |
Sivvy
Replies: 3
Views: 515
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 3:38 pm Subject: Help, my script won't wait for commands to finish |
| Though your code seems clean and easy to read, there was too much for me to read through... I think you might want to look up "OnMessage()" and "Critical" though, since it will all ... |
Topic: Alwaysontop does not work with transparency |
Sivvy
Replies: 5
Views: 331
|
Forum: Ask for Help Posted: Fri Jan 09, 2009 3:15 pm Subject: Alwaysontop does not work with transparency |
That kinda looks similar to "WinHide"...
WinHide, %Title%
Sleep, 1000
WinShow, %Title%
Might not be what you want, but as far as I know... Transparency 0 is equivalent to WinHide. |
| |