| Author |
Message |
Topic: Event Log: Read / Write |
Gehn
Replies: 7
Views: 1151
|
Forum: Wish List Posted: Tue May 10, 2005 9:14 pm Subject: Event Log: Read / Write |
| Traps like the one you mentioned would be a great feature for AutoHotkey in general. There's several things I've thought about doing but I am a little leery of doing via polling. |
Topic: Event Log: Read / Write |
Gehn
Replies: 7
Views: 1151
|
Forum: Wish List Posted: Mon May 09, 2005 8:27 pm Subject: Event Log: Read / Write |
C:\windows\system32\eventquery.vbs
True to its name, it allows you to query the event log. Use the "-?" parameter for instructions on how to use it. Using no parameters will make it print out every ... |
Topic: GuiControl, Font - How does it work? |
Gehn
Replies: 6
Views: 488
|
Forum: Ask for Help Posted: Sun Apr 03, 2005 11:18 pm Subject: GuiControl, Font - How does it work? |
Well, as best as I feel like testing, disabling it always causes the control to use grey text - regardless of what color it was set to show at any point.
I did find a way to work around my problem, ... |
Topic: GuiControl, Font - How does it work? |
Gehn
Replies: 6
Views: 488
|
Forum: Ask for Help Posted: Sun Apr 03, 2005 10:54 pm Subject: GuiControl, Font - How does it work? |
Ah, after rereading it a few times, I figured it out.
What I was looking for was:
Gui , Font , cBlack
GuiControl , Font , console
Sadly, it doesn't accomplish what I wanted it to. It seems I c ... |
Topic: GuiControl, Font - How does it work? |
Gehn
Replies: 6
Views: 488
|
Forum: Ask for Help Posted: Sun Apr 03, 2005 10:50 pm Subject: GuiControl, Font - How does it work? |
| You're using Gui, I'm using GuiControl. 'console' isn't a font I want, it's the control I want. |
Topic: GuiControl, Font - How does it work? |
Gehn
Replies: 6
Views: 488
|
Forum: Ask for Help Posted: Sun Apr 03, 2005 10:33 pm Subject: GuiControl, Font - How does it work? |
I took a stab at the syntax as best I could using the help file and came up with...
GuiControl , Font , console , cBlack
However, when I do this, I get an error stating that this command should ... |
Topic: Newb question.. |
Gehn
Replies: 9
Views: 544
|
Forum: Ask for Help Posted: Mon Mar 07, 2005 4:12 am Subject: Newb question.. |
| If jonny's suggestion doesn't work, then UT2k4 is probably recognizing it as automated input and ignoring it as part of an anticheating system. If I recall correctly, even creating something like an e ... |
Topic: Var := Var%Num% ... bug? (AutoTrim bug?) |
Gehn
Replies: 8
Views: 1115
|
Forum: Bug Reports Posted: Fri Mar 04, 2005 2:30 am Subject: Var := Var%Num% ... bug? (AutoTrim bug?) |
| I don't see why those things need actual arrays. I could see how implementing real arrays could possibly make the task easier, but since you can mimic the numbered behavior using a loop with already e ... |
Topic: Var := Var%Num% ... bug? (AutoTrim bug?) |
Gehn
Replies: 8
Views: 1115
|
Forum: Bug Reports Posted: Fri Mar 04, 2005 1:28 am Subject: Var := Var%Num% ... bug? (AutoTrim bug?) |
| Well, a nice way to be able to clear many variables at once would be if a wildcard could be used in an assignment statement. Then, you could clean up an array using something like 'myArray[*] = '. Thi ... |
Topic: Custom text wrapping script |
Gehn
Replies: 8
Views: 2081
|
Forum: Scripts & Functions Posted: Thu Mar 03, 2005 2:55 am Subject: Custom text wrapping script |
| Unfortunately, I can't take credit for my signature. It's a quote from William Clayton. |
Topic: BAT script |
Gehn
Replies: 2
Views: 608
|
Forum: Ask for Help Posted: Thu Mar 03, 2005 12:00 am Subject: BAT script |
| Yes. %1 is the first argument, %2 is the second, and so on. I believe it goes up to %99. However, %0 isn't the number of arguments, like in AutoHotkey, it's the command that invoked the batch file (fo ... |
Topic: Var := Var%Num% ... bug? (AutoTrim bug?) |
Gehn
Replies: 8
Views: 1115
|
Forum: Bug Reports Posted: Wed Mar 02, 2005 11:54 pm Subject: Var := Var%Num% ... bug? (AutoTrim bug?) |
| Are there any plans to allow concatenation with arrays eventually? It's something I'd really like to see. |
Topic: Custom text wrapping script |
Gehn
Replies: 8
Views: 2081
|
Forum: Scripts & Functions Posted: Wed Mar 02, 2005 11:47 pm Subject: Custom text wrapping script |
| While working on creating a GUI for a bigger project, I found that neither text nor edit elements really wrapped like how I wanted them to for the situation. Then, I got the idea to design a wrapping ... |
| |