| Author |
Message |
Topic: how to reduce lines in this code |
MasterFocus
Replies: 8
Views: 141
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 7:01 am Subject: how to reduce lines in this code |
^+F9::
^+F10::
^+F11::
Send ^a
Sleep, 250
Clipboard := "", Aux := 1 + Mod( SubStr(A_ThisHotkey,4) , 9 )
Send ^c
ClipWa ... |
Topic: Temporarily prevent user input |
MasterFocus
Replies: 2
Views: 24
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 3:54 am Subject: Temporarily prevent user input |
- BlockInput
 |
Topic: Re: RegExMatch, Why is it not finding all the subpatterns? |
MasterFocus
Replies: 8
Views: 135
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 3:48 am Subject: Re: Thank you to both sinkfaze and jaco0646 |
a "while" loop is needed to build the RegExMatch arrays.
It is not. You're not even capturing subpatterns, as sinkfaze explained. |
Topic: Hiding taskbar buttons |
MasterFocus
Replies: 2
Views: 101
|
Forum: Ask for Help Posted: Sun Mar 21, 2010 3:40 am Subject: Hiding taskbar buttons |
| EDIT: Sean corrected my code, please see following post. |
Topic: AHK & Identifying Windows |
MasterFocus
Replies: 12
Views: 574
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 7:20 pm Subject: AHK & Identifying Windows |
| - WinTitle Parameter |
Topic: Fancy Font Generator |
MasterFocus
Replies: 2
Views: 62
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 7:14 pm Subject: Fancy Font Generator |
Gui, Add, Edit, w400 r9 gUpdate vMyEdit, TYPE HERE
Gui, Add, Edit, w400 r9 vMyEdit2, NEW TEXT HERE
Gui, Show,, Fancy Font Generator
Return
Update:
Gui, Submit, NoHide
StringReplace, My ... |
Topic: Mouse stay |
MasterFocus
Replies: 1
Views: 47
|
Forum: Ask for Help Posted: Sat Mar 20, 2010 7:06 pm Subject: Mouse stay |
Show your code so it's easier to help you.
(use code tags) |
Topic: Random Desktop Background |
MasterFocus
Replies: 2
Views: 51
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 8:28 am Subject: Random Desktop Background |
1) Loop the files
2) Inside the Loop, store the number of files (use A_Index)
3) Use the Random command to get a number between 1 and the number of files
4) Loop the files once again
5) This time, ... |
Topic: #Enter works strange for leftwin |
MasterFocus
Replies: 3
Views: 79
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 8:21 am Subject: #Enter works strange for leftwin |
| What does your script's Key History show? |
Topic: Just want to click, 1, enter, repeat |
MasterFocus
Replies: 7
Views: 58
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 3:42 am Subject: Just want to click, 1, enter, repeat |
| Show your code. Also, what program are you dealing with? |
Topic: Print Selected files |
MasterFocus
Replies: 17
Views: 172
|
Forum: Ask for Help Posted: Fri Mar 19, 2010 3:33 am Subject: Print Selected files |
Related: http://www.autohotkey.com/forum/viewtopic.php?t=55493print
say the program that i use is called, xyz.exe
Run, full_EXE_path_here.exe file_here.extension
 |
Topic: function MouseIsOver("ahk_class",x1,y1,x2,y2) |
MasterFocus
Replies: 2
Views: 93
|
Forum: Wish List Posted: Fri Mar 19, 2010 1:35 am Subject: function MouseIsOver("ahk_class",x1,y1,x2,y2) |
Related:
-
-
- (related functions contain the word "point") |
Topic: Need some help with Auto-close |
MasterFocus
Replies: 5
Views: 53
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 6:28 pm Subject: Need some help with Auto-close |
1) Wrong place. Should have posted it here.
You should use Voice, no SetTitleMatchModeWinTitle Alternatives. |
Topic: wait for window to be active to execute script? |
MasterFocus
Replies: 4
Views: 87
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 5:46 pm Subject: wait for window to be active to execute script? |
| Related: |
Topic: Sleep Until Time |
MasterFocus
Replies: 15
Views: 456
|
Forum: Scripts & Functions Posted: Thu Mar 18, 2010 5:35 pm Subject: Sleep Until Time |
Related:
You must post your code so that others may look into it to figure out the problem.
Not really. Sleep causes the script to hang, so it's a pretty obvious problem. |
| |