| Author |
Message |
Topic: GUI picture buttons |
djeaton3162
Replies: 4
Views: 625
|
Forum: Ask for Help Posted: Thu Jan 28, 2010 9:43 pm Subject: GUI picture buttons |
| I'm new to GUI, but it seems you can have a picture, or a button, but not both. I'd like my "pictures" to be actionable like a button. Ultimately, what I'd like to do is replicate a [url=h ... |
Topic: Problem with includes |
djeaton3162
Replies: 2
Views: 245
|
Forum: Ask for Help Posted: Thu Jan 28, 2010 6:52 pm Subject: Problem with includes |
Thanks for the quick solution. I figured #IfWinActive was the problem, but it never occurred to me that repeating "the problem" would actually *solve* the problem.
Daniel |
Topic: Crazy Scripting : Include an Icon in your script |
djeaton3162
Replies: 68
Views: 12302
|
Forum: Scripts & Functions Posted: Thu Jan 28, 2010 9:59 am Subject: Crazy Scripting : Include an Icon in your script |
| I realize this is a very old topic, but I'm curious if something similar can be done with GUI pictures so that a script can be compiled and the EXE distributed without all the GUI graphic components h ... |
Topic: Problem with includes |
djeaton3162
Replies: 2
Views: 245
|
Forum: Ask for Help Posted: Thu Jan 28, 2010 8:30 am Subject: Problem with includes |
I have/had a HUGE script file that was a pain to keep organized. I used the ;=============================
WinGetTitle, Title, A
SetTitleMatchMode, 2
#IfWinActive, Google Reader
{
left: ... |
Topic: How can I have a perpetual process "sleep" during |
djeaton3162
Replies: 9
Views: 510
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 5:14 pm Subject: How can I have a perpetual process "sleep" during |
AHK always thinks it is after the current time.There might be a reason for that. Are you caring about time- vs. number format?
I can set TimerStart to "1400" and use FormatTime, Now_Tm,,HHm ... |
Topic: How can I have a perpetual process "sleep" during |
djeaton3162
Replies: 9
Views: 510
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 4:40 pm Subject: How can I have a perpetual process "sleep" during |
What am I doing wrong here?
Now_Hr := SubStr(A_Now, 9, 2)
Now_Mn := SubStr(A_Now, 11, 2)
Now_Tm := SubStr(A_Now, 9, 4)
TimerStart := Now_Tm - 5
if Now_ ... |
Topic: How can I have a perpetual process "sleep" during |
djeaton3162
Replies: 9
Views: 510
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 3:57 pm Subject: How can I have a perpetual process "sleep" during |
BTBH isn't "butt, to be honest" (what you might have thought ) it's "but, to be honest"
Sorry for the confusion this might have caused. 8)OK. Did I miss the point o ... |
Topic: How can I have a perpetual process "sleep" during |
djeaton3162
Replies: 9
Views: 510
|
Forum: Ask for Help Posted: Mon Sep 24, 2007 3:31 pm Subject: How can I have a perpetual process "sleep" during |
| I don't understand. This looks like it is updating the INI file configuration. What I want to do is read the INI configuration (which I have already done with the other parameters there) and "s ... |
Topic: How can I have a perpetual process "sleep" during |
djeaton3162
Replies: 9
Views: 510
|
Forum: Ask for Help Posted: Sun Sep 23, 2007 11:24 pm Subject: How can I have a perpetual process "sleep" during |
I have a perpetual process that is reading parameters from an INI file. I have the following set:
SleepStart=800
SleepStop=1800
Weekend=1
The idea is that it will run all weekend and on the wee ... |
Topic: Auto read,load and save an INI file Updated.... |
djeaton3162
Replies: 24
Views: 5964
|
Forum: Scripts & Functions Posted: Fri Sep 21, 2007 5:59 pm Subject: Auto read,load and save an INI file Updated.... |
| please read about the user library and the Standard Library. It let you "extend" the AHK language by Auto-including needed functions from %A_MyDocuments%\Autohotkey\Lib and from the Autohotk ... |
Topic: Auto read,load and save an INI file Updated.... |
djeaton3162
Replies: 24
Views: 5964
|
Forum: Scripts & Functions Posted: Fri Sep 21, 2007 5:32 pm Subject: Auto read,load and save an INI file Updated.... |
| Here is where I am confused. If your script of functions isn't inside my own script or "included", how does it find it? I love what you are doing with the sections as well. I have other t ... |
Topic: Auto read,load and save an INI file Updated.... |
djeaton3162
Replies: 24
Views: 5964
|
Forum: Scripts & Functions Posted: Fri Sep 21, 2007 4:05 pm Subject: Auto read,load and save an INI file Updated.... |
What you guys are doing is way over my head...but I need it. I am setting some environment variables in a script, but need to read them from a ini file that others can edit and add to. The ini fi ... |
Topic: Automatic repetitive file processing |
djeaton3162
Replies: 7
Views: 479
|
Forum: Ask for Help Posted: Thu Sep 20, 2007 7:03 pm Subject: Automatic repetitive file processing |
| SplitPath was the piece I was missing! And don't be confused. There would be a DoneFile and an ErrFile. If the JPG exists, we go the DoneFile route. If not, we rename it with a .ERR extension. Th ... |
Topic: Automatic repetitive file processing |
djeaton3162
Replies: 7
Views: 479
|
Forum: Ask for Help Posted: Thu Sep 20, 2007 6:27 pm Subject: Automatic repetitive file processing |
Try to post some psuedo code ..
OK. Suppose %A_LoopFileName% contained "image.flame". This is what I want to do
Loop, %A_WorkingDir%\*.flame
{
RunWait %comspec% /c " ... |
Topic: Send a attachment without any dll calls. |
djeaton3162
Replies: 8
Views: 1467
|
Forum: Scripts & Functions Posted: Thu Sep 20, 2007 6:15 pm Subject: Send a attachment without any dll calls. |
How do you go about specifying the SMTP server and its login and password?
D. |
| |