| Author |
Message |
Topic: Press button in Firefox dialog |
vahju
Replies: 4
Views: 57
|
Forum: Ask for Help Posted: Sat Nov 22, 2008 9:32 pm Subject: Press button in Firefox dialog |
| For for middle click you might get some ideas from [url=http://www.autohotkey.com/forum/viewtopic.php?t=36960&start=0&postdays=0&postorder=asc]this post. Check out Serenity ... |
Topic: Clicking buttons by name instead of coordinates |
vahju
Replies: 3
Views: 36
|
Forum: Ask for Help Posted: Fri Nov 21, 2008 4:22 pm Subject: Clicking buttons by name instead of coordinates |
| You might be able to use ControlClick using ClassNN name of the button. Take a look at ahk help file for the above. I haven't done this so others might have a better answer. |
Topic: mass ping in dota |
vahju
Replies: 17
Views: 290
|
Forum: Ask for Help Posted: Sun Nov 16, 2008 10:05 pm Subject: mass ping in dota |
F3::
Send {enter}
Send -random
Send {enter
return |
Topic: Sticky Request: Laptop Function Keys |
vahju
Replies: 1
Views: 47
|
Forum: Ask for Help Posted: Sun Nov 16, 2008 1:17 pm Subject: Sticky Request: Laptop Function Keys |
Just in case your looking for FN resources I just noticed a link SKAN posted in another thread.
http://www.autohotkey.com/forum/viewtopic.php?p=189289#189289
Hope that helps. |
Topic: mass ping in dota |
vahju
Replies: 17
Views: 290
|
Forum: Ask for Help Posted: Sun Nov 16, 2008 1:12 pm Subject: mass ping in dota |
| Change {F3}:: to F3:: |
Topic: Send "tab" and "1" in a loop |
vahju
Replies: 3
Views: 152
|
Forum: Ask for Help Posted: Wed Nov 05, 2008 7:49 pm Subject: Send "tab" and "1" in a loop |
I borrowed Guest's code from
#SingleInstance,Force
#MaxThreadsPerHotkey 2
var = 0
return ; end of autoexecute section
F1::
var := !var
Loop
{
if !var
break
Send ... |
Topic: Help Using SetTitleMatchMode and IfWinActive |
vahju
Replies: 11
Views: 277
|
Forum: Ask for Help Posted: Wed Nov 05, 2008 5:54 pm Subject: Help Using SetTitleMatchMode and IfWinActive |
| I found a website that has a function that activates a window then minimizes with the same hotkey. Maybe [url=http://www.howtogeek.com/howto/keyboard-ninja/keyboard-ninja-assign-a-hotkey-to-any-windo ... |
Topic: WinWaitChange |
vahju
Replies: 1
Views: 67
|
Forum: Ask for Help Posted: Sun Nov 02, 2008 9:36 pm Subject: WinWaitChange |
| FileGetTime might help. |
Topic: Auto check forum updates |
vahju
Replies: 12
Views: 476
|
Forum: Ask for Help Posted: Tue Oct 28, 2008 3:19 am Subject: Auto check forum updates |
Hope this helps.
http://pipes.yahoo.com/ |
Topic: hide gmail username in the browser |
vahju
Replies: 6
Views: 129
|
Forum: Ask for Help Posted: Fri Oct 24, 2008 6:24 pm Subject: hide gmail username in the browser |
| This might be something that [url=https://addons.mozilla.org/en-US/firefox/addon/2108]Stylish or [url=https://addons.mozilla.org/en-US/firefox/addon/748]Greasemonkey can do. |
Topic: Any way to clear edit control upon focus or initial change |
vahju
Replies: 4
Views: 127
|
Forum: Ask for Help Posted: Thu Oct 23, 2008 4:09 pm Subject: Any way to clear edit control upon focus or initial change |
| SKAN thanks for the link. The Timer approach worked perfectly. |
Topic: Any way to clear edit control upon focus or initial change |
vahju
Replies: 4
Views: 127
|
Forum: Ask for Help Posted: Wed Oct 22, 2008 5:00 pm Subject: Any way to clear edit control upon focus or initial change |
Serenity I tried you suggestion and it clears the edit field but for some reason no matter what contol I click on it minimizes or hides the GUI.
I really don't understand the WM_LButtonDown paramet ... |
Topic: Any way to clear edit control upon focus or initial change |
vahju
Replies: 4
Views: 127
|
Forum: Ask for Help Posted: Tue Oct 21, 2008 7:47 pm Subject: Any way to clear edit control upon focus or initial change |
So I have this edit control that contains some default text.
Gui, Add, Edit, r3 vEditText y+10 w140, Add some extra notes.
What I would like to do is when someone clicks in the edit control the de ... |
Topic: Advice Please simple loop |
vahju
Replies: 11
Views: 163
|
Forum: Ask for Help Posted: Mon Oct 20, 2008 12:39 am Subject: Advice Please simple loop |
First loop is infinite. Second loop only loops 5 times. You can change that to any number.
Loop {
MouseClick, left, 631, 494
Sleep, 3000
MouseClick, left, 31, 51
Sleep, 3000
MouseClic ... |
Topic: double clicking |
vahju
Replies: 5
Views: 115
|
Forum: Ask for Help Posted: Sun Oct 19, 2008 11:23 pm Subject: double clicking |
Put a tilde infront of the hotkey.
~CapsLock:: |
| |