| Author |
Message |
Topic: Strange problem with hotstrings |
[VxE]
Replies: 15
Views: 227
|
Forum: Ask for Help Posted: Sat Feb 11, 2012 2:41 am Subject: Strange problem with hotstrings |
sorry about my ignorance, but how can that happen if we're all running the exact same script?
the .exe file is located in a network folder and we all run that same script from our computer, I think i ... |
Topic: Window-specific message handlers |
[VxE]
Replies: 4
Views: 277
|
Forum: Wish List Posted: Sat Feb 11, 2012 1:50 am Subject: Window-specific message handlers |
All +1.
I would love to see message handlers definable on a per-hwnd basis.
Multiple handlers would probably have to be chained. The first handler function would either decide that it should ret ... |
Topic: Newbie needing Directions |
[VxE]
Replies: 3
Views: 103
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 2:15 am Subject: Newbie needing Directions |
| AHK offers various levels of interaction and automation. On the simplest scale, AHK can replace abbreviations as you type them. E.g:; Type "pdd" then a space or punctuation and "pediatr ... |
Topic: Strange problem with hotstrings |
[VxE]
Replies: 15
Views: 227
|
Forum: Ask for Help Posted: Fri Feb 10, 2012 1:47 am Subject: Strange problem with hotstrings |
You probably have more than one AHK script using the keyboard hook. By default, hotstrings use SendInput unless another script has a keyboard hook installed, in which case they use SendPlay.
When y ... |
Topic: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
[VxE]
Replies: 176
Views: 12405
|
Forum: Scripts & Functions Posted: Thu Feb 09, 2012 9:49 am Subject: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
I don't see how unicode would effect HttpSendRequestEx since headers and post data are handled separately.
Well, I'm running out of ideas. If the problem does lie in the structure, then perhaps a b ... |
Topic: time -= 1, Days not working |
[VxE]
Replies: 6
Views: 148
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 3:58 am Subject: time -= 1, Days not working |
FWIW: try custom functions that make date arithmetic more intuitive:DateAdd( datetime, howmany = 0, whatunits = "days" ) {
; Returns 'datetime' offset by 'howmany' 'whatunits'
... |
Topic: Text Replacement Continuation Sections |
[VxE]
Replies: 2
Views: 80
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 3:44 am Subject: Text Replacement Continuation Sections |
Var = ; Use a `backtick` to escape a literal ")" at the beginning of a line in a continuation section
(
if(
x > y &&
(
z == a ||
b &g ... |
Topic: [Solved] Dynamically Creating A Menu With XML |
[VxE]
Replies: 17
Views: 286
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 3:39 am Subject: [Solved] Dynamically Creating A Menu With XML |
Unfortunately, I know nothing about xpath. Whenever I have to work with XML, I do it using ordinary string manipulation. My table library has one such example.
One way to parse XML (without comment ... |
Topic: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
[VxE]
Replies: 176
Views: 12405
|
Forum: Scripts & Functions Posted: Thu Feb 09, 2012 3:21 am Subject: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
| I can't get your test script to work at all ('cookie_a' is never returned). I tried using every version of HTTPRequest that I have (making sure to use the correct codepage options for each). Here's th ... |
Topic: [Solved] Dynamically Creating A Menu With XML |
[VxE]
Replies: 17
Views: 286
|
Forum: Ask for Help Posted: Wed Feb 08, 2012 7:15 am Subject: [Solved] Dynamically Creating A Menu With XML |
Well, since you previously set it up as a fixed set of nested loops, if you want to have flexible nest levels, you'll have to use a different approach (e.g: recursion).
For instance, you can traver ... |
Topic: [Solved] Dynamically Creating A Menu With XML |
[VxE]
Replies: 17
Views: 286
|
Forum: Ask for Help Posted: Wed Feb 08, 2012 5:07 am Subject: [Solved] Dynamically Creating A Menu With XML |
I think you got your parameters mixed up.Menu, % menuNames[i,0,0], Add, % preparsed3, % ":" menuNames[i,j,0]  |
Topic: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
[VxE]
Replies: 176
Views: 12405
|
Forum: Scripts & Functions Posted: Tue Feb 07, 2012 5:03 am Subject: [Func] HTTPRequest: for Web APIs [AHK-B + AHK-L+Unicode+x64] |
Thanks, I would like to know more about how you set up the HTTPRequest call, since some features don't come into play unless specifically invoked.
For instance, if you're going to be handling cooki ... |
Topic: [Solved] Dynamically Creating A Menu With XML |
[VxE]
Replies: 17
Views: 286
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 4:51 am Subject: [Solved] Dynamically Creating A Menu With XML |
| I guess I should have clarified: you get to decide how the menu names are constructed, even if you don't know what the pieces are going to be. You can choose a method that is both extensible (allowing ... |
Topic: 1 GUI and two ListView |
[VxE]
Replies: 5
Views: 101
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 4:36 am Subject: 1 GUI and two ListView |
Put this before doing stuff to your first listview.Gui, Invoice:Listview, PackageList
If you have more than one listview in a gui, it's a good idea to use that before doing anything to any lis ... |
Topic: [Solved] Dynamically Creating A Menu With XML |
[VxE]
Replies: 17
Views: 286
|
Forum: Ask for Help Posted: Tue Feb 07, 2012 4:25 am Subject: [Solved] Dynamically Creating A Menu With XML |
You can think of each tier like a directory, with each menu name like a folder and each menu item like a file. Since you get to decide on the menu names, why not make the names useful?
I don't see ... |
| |