| Author |
Message |
Topic: How to script a series of clicks? |
wrecklass
Replies: 16
Views: 1527
|
Forum: Ask for Help Posted: Tue Feb 15, 2011 7:41 pm Subject: How to script a series of clicks? |
| The F key is mapped to flying in the game and it may be getting filtered. Try something else like the V key, which cannot be mapped in the game for some reason. |
Topic: WindowPad - multi-monitor window-moving tool |
wrecklass
Replies: 319
Views: 158748
|
Forum: Scripts & Functions Posted: Sun Sep 27, 2009 7:14 pm Subject: WindowPad - multi-monitor window-moving tool |
| Not sure if the WindowPad author is following this thread recently, but I was wondering if there is an option I can use in .ini to tell WindowPadMove to do just that. The current WindowPadMove moves a ... |
Topic: iTunes and AutoHotkey |
wrecklass
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Fri Sep 25, 2009 9:29 pm Subject: iTunes and AutoHotkey |
The new script is nice, but has a number of problems:
1) The new option to not start playing when iTunes is launched causes the Album info to never be loaded. In fact even if you start a track play ... |
Topic: Wallpaper Randomizer |
wrecklass
Replies: 13
Views: 5144
|
Forum: Scripts & Functions Posted: Fri Sep 25, 2009 8:15 am Subject: Wallpaper Randomizer |
I came here to find some suggestions on how to change my wallpaper with AHK, and find this wonderful script already written. Thanks!
I made one tweak to the script to make it slightly faster. Espec ... |
Topic: iTunes and AutoHotkey |
wrecklass
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Sun Aug 30, 2009 8:11 pm Subject: iTunes and AutoHotkey |
If anyone else is curious, after some debugging of my own I found the issue. My simple fix was to comment out lines 963 & 964:
; COM_Release(Duration)
; COM_Release(Position)
My guess is ... |
Topic: iTunes and AutoHotkey |
wrecklass
Replies: 37
Views: 12300
|
Forum: Scripts & Functions Posted: Sat Aug 29, 2009 8:41 pm Subject: iTunes and AutoHotkey |
| I suspect this is no longer supported since I see the author no longer posts here. Still I wonder if anyone has fixed the crash bug where this script crashes AutoHotkeys whenever a podcast is selected ... |
Topic: Using variables and words to tell it which string to use? |
wrecklass
Replies: 5
Views: 366
|
Forum: Ask for Help Posted: Sat Oct 11, 2008 5:43 pm Subject: Using variables and words to tell it which string to use? |
| Changed my answer when I realized you are trying to use one of AHK's fake arrays. See above. |
Topic: Using variables and words to tell it which string to use? |
wrecklass
Replies: 5
Views: 366
|
Forum: Ask for Help Posted: Sat Oct 11, 2008 5:12 pm Subject: Using variables and words to tell it which string to use? |
No, the variables are interpreted and then the := is performed. So that statement won't scan. You can do this a number of ways. If it is just two possibilities try:
i := 1
var%i% := &quo ... |
Topic: iTunes Info & Control - v2.3 |
wrecklass
Replies: 14
Views: 6143
|
Forum: Scripts & Functions Posted: Sat Oct 04, 2008 9:02 pm Subject: iTunes Info & Control - v2.3 |
| I fixed one thing. If the current song doesn't have album art, and you pop up the info window an error message says the artwork object may be invalid. That's because it is empty. I just fixed it by ch ... |
Topic: Duplicate Hotkey |
wrecklass
Replies: 8
Views: 573
|
Forum: Ask for Help Posted: Wed Oct 01, 2008 12:15 am Subject: Duplicate Hotkey |
That didn't work on my system, but this does:
Delete::
if Bool = 1
{
Bool := 0
WinMinimizeAll
}
else
{
Bool := 1
WinMinimizeAllUndo
}
return
|
Topic: Autorun |
wrecklass
Replies: 7
Views: 616
|
Forum: Ask for Help Posted: Wed Oct 01, 2008 12:07 am Subject: Autorun |
Nothing will happen really, I just want to prank my friend when he's working on an assignment.
I also need it for person use as well though.
Won't work for several reasons. The users computer has ... |
Topic: CPU Usage Report in ToolTip |
wrecklass
Replies: 9
Views: 672
|
Forum: Ask for Help Posted: Tue Sep 30, 2008 5:25 am Subject: CPU Usage Report in ToolTip |
I found the numbers weren't making much sense on my system. But I think I know why. I have a dual core CPU. Essentially two CPU's. I changed the line from this:
load := 100 - 0.01*(Idl ... |
Topic: Program still working while I'm doing something else on comp |
wrecklass
Replies: 15
Views: 1223
|
Forum: Ask for Help Posted: Thu Sep 18, 2008 4:28 am Subject: Program still working while I'm doing something else on comp |
Yeah... but you guys know another program like AHK taht could make it?
Like AHK? No
Another programming language? Probably. Do it in either C, C++ or Assembly. Write a program that reads the GDI ... |
Topic: If - Take long time to run? |
wrecklass
Replies: 4
Views: 445
|
Forum: Ask for Help Posted: Sat Sep 13, 2008 12:38 am Subject: If - Take long time to run? |
| Honestly, I'm surprised this takes only 90 seconds. I don't see an obvious way to speed it up. The big problem is that AHK doesn't handle Arrays very efficiently. Your script is creating thousands of ... |
Topic: Prompt for choices in the middle of a script? |
wrecklass
Replies: 1
Views: 398
|
Forum: Ask for Help Posted: Fri Sep 12, 2008 3:28 am Subject: Prompt for choices in the middle of a script? |
It's easy to do:
::]t::
MsgBox,4,Time Entry,Enter type 2?
IfMsgBox, Yes
{
FormatTime, TimeString,,Time
send %TimeString%
}
Else
{
FormatTime, Tim ... |
| |