| Author |
Message |
Topic: Comment block bug |
Akize
Replies: 3
Views: 120
|
Forum: Bug Reports Posted: Mon Jun 30, 2008 3:57 pm Subject: Comment block bug |
Comments in Scriptsonly if the symbols appear at the beginning of a line
My bad, still don't understand why AHK can't at least throw an error when it occurs though. |
Topic: Comment block bug |
Akize
Replies: 3
Views: 120
|
Forum: Bug Reports Posted: Fri Jun 27, 2008 8:34 pm Subject: Comment block bug |
I ran into this awhile ago and forgot to ever mention it. Did a quick forum search but didn't find anything either.
If you comment out your code like so:
f1::
msgbox f1
return
/*f2 ... |
Topic: Active Window Info gives incorrect data in Remote Desktop |
Akize
Replies: 4
Views: 316
|
Forum: Ask for Help Posted: Wed May 30, 2007 6:48 pm Subject: Active Window Info gives incorrect data in Remote Desktop |
Local computer is running a script, remote computer is running nothing. Let's say I bound ^q to !f4 for Firefox.
The hotkey works locally, and then it works remotely even though the active window ... |
Topic: Active Window Info gives incorrect data in Remote Desktop |
Akize
Replies: 4
Views: 316
|
Forum: Ask for Help Posted: Wed May 30, 2007 11:43 am Subject: Active Window Info gives incorrect data in Remote Desktop |
To be more specific, on the host computer Active Window Info will always report:
xxx.xxx.xxx.xxx - Remote Desktop
ahk_class TSSHELLWND
However I wrote some class specific hotkeys and they still w ... |
Topic: IfWin supported multiple paramaters |
Akize
Replies: 4
Views: 204
|
Forum: Ask for Help Posted: Wed May 30, 2007 9:58 am Subject: IfWin supported multiple paramaters |
i r stoopid, k?
thx
While you're here, is there a way to template a hotkey?
e.g. replace all ^#'s with !#'s. |
Topic: IfWin supported multiple paramaters |
Akize
Replies: 4
Views: 204
|
Forum: Ask for Help Posted: Wed May 30, 2007 9:38 am Subject: IfWin supported multiple paramaters |
e.g. IfWinActive (ahk_class class1 || ahk_class2)
It'd save me a lot of else ifwin- statements. |
Topic: Very basic script: help :X |
Akize
Replies: 10
Views: 764
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 6:44 am Subject: Very basic script: help :X |
Without knowing / having the game you're working with, it's difficult to help you.
I usually simplify the script so I can tell which part of it is breaking:
^m::
send {space}
s ... |
Topic: flashing up volume persentage on screen |
Akize
Replies: 1
Views: 163
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 5:52 am Subject: flashing up volume persentage on screen |
| Getting the volume percentage is easy enough using [url=http://www.autohotkey.com/docs/commands/SoundGet.htm]SoundGet, and just display the number in a message box, system tooltip, or gui box. |
Topic: Sorry, but where do i download this macro program? |
Akize
Replies: 2
Views: 216
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 5:49 am Subject: Sorry, but where do i download this macro program? |
| As long as you have Autohotkey installed, when you double click on an .ahk file it will compile and run. You can tell that it's running by the green H icon that pops up in your system tray, just doub ... |
Topic: Very basic script: help :X |
Akize
Replies: 10
Views: 764
|
Forum: Ask for Help Posted: Fri Feb 16, 2007 5:47 am Subject: Very basic script: help :X |
| The script itself works fine. If it's not working in game try looking into [url=http://www.autohotkey.com/docs/commands/Send.htm#SendPlayDetail]SendPlay. |
Topic: Closing random pop-ups |
Akize
Replies: 1
Views: 186
|
Forum: Ask for Help Posted: Fri Feb 02, 2007 3:35 am Subject: Closing random pop-ups |
| Found my answer in settimer. |
Topic: Closing random pop-ups |
Akize
Replies: 1
Views: 186
|
Forum: Ask for Help Posted: Fri Feb 02, 2007 3:26 am Subject: Closing random pop-ups |
The simplest way that I can think of to close random pop-ups is to run a continuous loop using ifwinexist, but I need to be able to check for windows without stopping the rest of the script.
I thin ... |
Topic: Close Windows Task Manager |
Akize
Replies: 3
Views: 193
|
Forum: Ask for Help Posted: Fri Feb 02, 2007 3:23 am Subject: Close Windows Task Manager |
+t::WinClose, Windows Task Manager
or using the class
+t::WinClose, ahk_class #32770
But quite a lot of Windows' windows have a class of #32770. You'll probably end up inadvertently cl ... |
Topic: Simpler way to store data besides arrays? (for a scheduler) |
Akize
Replies: 6
Views: 314
|
Forum: Ask for Help Posted: Sat Dec 30, 2006 5:46 pm Subject: Simpler way to store data besides arrays? (for a scheduler) |
Thanks for all the responses.
Well, you can use WinXP's task scheduler for that... Or some similar freeware.
LOL I had completely forgotten about Windows task scheduler. Well at the moment I'm ... |
Topic: Simpler way to store data besides arrays? (for a scheduler) |
Akize
Replies: 6
Views: 314
|
Forum: Ask for Help Posted: Sat Dec 30, 2006 4:31 am Subject: Simpler way to store data besides arrays? (for a scheduler) |
I need my PC to do certain actions throughout the day and am writing a short scheduling program to do it.
I'm going about this problem by dumping the schedule into a txt file in this format:
day o ... |
| |