| Author |
Message |
Topic: Progress on statusbar |
dmatch
Replies: 6
Views: 515
|
Forum: Ask for Help Posted: Wed Jul 30, 2008 3:41 pm Subject: Progress on statusbar |
Glad it could be of use.
dmatch |
Topic: generic DLL and dllcall question |
dmatch
Replies: 4
Views: 191
|
Forum: Ask for Help Posted: Wed May 21, 2008 5:03 pm Subject: generic DLL and dllcall question |
whatever Flat DLL is how can i distinguish that it's flat or not?
Here is an example of a declaration for a Object oriented function in the Microsoft Foundation Classes (MFC) for Visual C++ from ... |
Topic: basic DllCall question |
dmatch
Replies: 5
Views: 410
|
Forum: Ask for Help Posted: Mon Apr 21, 2008 4:21 pm Subject: This may help |
Many of those flags/constants used in Windows API calls can be found using a tool for fetching constants posted by SKAN here:
http://www.autohotkey.com/forum/topic19766.html
Just thought this mi ... |
Topic: Passing an array with ByRef to a method does not work! |
dmatch
Replies: 10
Views: 265
|
Forum: Ask for Help Posted: Sat Feb 16, 2008 1:12 am Subject: Passing an array with ByRef to a method does not work! |
| The thing that first popped into my mind when I saw the Demo(S:="Array") was when I first got into AutoHotKey and was seeing what was, to me at the time, cryptic code such as:SomeFunc(A, ... |
Topic: Passing an array with ByRef to a method does not work! |
dmatch
Replies: 10
Views: 265
|
Forum: Ask for Help Posted: Fri Feb 15, 2008 3:49 pm Subject: Passing an array with ByRef to a method does not work! |
It wasn't my example it was TheIrsihThug's example that first contained the Demo(S:="Array").
Whether it will make you feel better or not I don't know, but I will insert a tiny little &q ... |
Topic: Passing an array with ByRef to a method does not work! |
dmatch
Replies: 10
Views: 265
|
Forum: Ask for Help Posted: Thu Feb 14, 2008 4:26 pm Subject: Passing an array with ByRef to a method does not work! |
In first post:
Demo(ByRef Array)
{
Array%1%_1 := "paco"
MsgBox, In : %Array_1% ; Shows paco :-)
}
first post:
The OP was talking a ... |
Topic: my IfWinActive line isn't working |
dmatch
Replies: 2
Views: 138
|
Forum: Ask for Help Posted: Wed Feb 13, 2008 6:15 pm Subject: my IfWinActive line isn't working |
FWIW, On the system I am currently running (Windows Me) AutoHotKey can't tell the difference between NumPadEnter and Enter.
Perhaps #SingleInstance Force at the top of you script(s) would do what y ... |
Topic: Newbie: Read information from a text box to a file |
dmatch
Replies: 1
Views: 129
|
Forum: Ask for Help Posted: Wed Feb 13, 2008 5:13 pm Subject: Newbie: Read information from a text box to a file |
| You might find AU3_Spy useful in determining the ClassNN name of the controls that are in a window. AU3_Spy.exe should be in your AutoHotKey program folder (same folder with AutoHotKey.exe in it). Run ... |
Topic: Passing an array with ByRef to a method does not work! |
dmatch
Replies: 10
Views: 265
|
Forum: Ask for Help Posted: Wed Feb 13, 2008 4:37 pm Subject: Passing an array with ByRef to a method does not work! |
Hi pacodelucia,
Demo(S:="Array") would have the same functionality as:S:="Array" ;puts the string (literally) Array into variable S.
Demo(S) ; C ... |
Topic: Lil help for script |
dmatch
Replies: 5
Views: 231
|
Forum: Ask for Help Posted: Sun Feb 10, 2008 5:03 pm Subject: Lil help for script |
Hello lexiKos,
You say "That makes no sense". Well, that's a very extreme statement so I guess you are just looking for argument. If you wanted to you probably could find some perspective ... |
Topic: Lil help for script |
dmatch
Replies: 5
Views: 231
|
Forum: Ask for Help Posted: Sat Feb 09, 2008 7:14 pm Subject: Lil help for script |
Hi SKP,
Remember "if it aint broke don't fix it", so if you want to resturcture this script save it so you "have a bird in hand." Afterall, you may have other things that you ne ... |
Topic: SetWinTimer Function (Triggers Variable or Function) |
dmatch
Replies: 4
Views: 1033
|
Forum: Scripts & Functions Posted: Wed Feb 06, 2008 7:46 pm Subject: Updated First Post |
First post was updated with new code that does not trap WM_TIMER messages and will also call a function(s) when a timer(s) fires.
This makes it really global-less.
dmatch |
Topic: stuck with RegisterCallBack() |
dmatch
Replies: 1
Views: 88
|
Forum: Ask for Help Posted: Wed Feb 06, 2008 5:47 pm Subject: stuck with RegisterCallBack() |
Hi, DerRaphael,
I don't think RegisterCallback is going to be able to do what you want. Since you want to intercept the call to GetOpenFileName from "anywhere" it appears from my research ... |
Topic: SetWinTimer Function (Triggers Variable or Function) |
dmatch
Replies: 4
Views: 1033
|
Forum: Scripts & Functions Posted: Mon Feb 04, 2008 7:06 pm Subject: Re: SetWinTimer Function (Uses No labels/No Globals) |
| Would I be correct in assuming you must poll for timer completion (i.e. repeatedly check whether a timer has fired?) This more or less defeats the purpose of having timers, since you could just as wel ... |
Topic: How do I create new timers on the fly? |
dmatch
Replies: 23
Views: 765
|
Forum: Ask for Help Posted: Mon Feb 04, 2008 4:58 pm Subject: How do I create new timers on the fly? |
It may be what I need but it is a bit too cryptic for a noob such as myself.
I feel your pain.
I have looked at what lexiKos did in the Timer Dispatch function and as far as I can ... |
| |