| Author |
Message |
Topic: Variable containing whole command line like $CmdLineRaw |
MilesAhead
Replies: 10
Views: 457
|
Forum: Wish List Posted: Tue Mar 02, 2010 3:28 am Subject: Variable containing whole command line like $CmdLineRaw |
...JSLover(?) suggested A_Param1, A_Param2, ...
...I have current working (unreleased) code for A_Param1, A_ParamN...but it's not as useful as I'd like (parsing params based on order)...so I plan on ... |
Topic: Toggle Topmost attribute of active window with hotkey |
MilesAhead
Replies: 3
Views: 557
|
Forum: Scripts & Functions Posted: Mon Dec 21, 2009 5:59 am Subject: Toggle Topmost attribute of active window with hotkey |
I've tested it. It does exactly what it says on the tin!
I don't really have any use for it myself, but I'm sure there are plenty of others that do.
Thanks for the comment. When I wrote it I u ... |
Topic: Auto-Syntax-Tidy v12 |
MilesAhead
Replies: 60
Views: 19500
|
Forum: Scripts & Functions Posted: Fri Nov 20, 2009 1:25 am Subject: Auto-Syntax-Tidy v12 |
| Looks like a 2 fold solution will work for me. Use this utility to set keyword caps, then just run Indentation Checker command in Scite 1.73 to put the braces back where expected. |
Topic: Auto-Syntax-Tidy v12 |
MilesAhead
Replies: 60
Views: 19500
|
Forum: Scripts & Functions Posted: Mon Nov 16, 2009 11:20 pm Subject: UDF left bracket flush style? |
It seems to insits on this function style
_func()
{
return 0
}
Is there a setting to get it to do
_func()
{
return 0
}
flus ... |
Topic: RocketDock as part of taskbar |
MilesAhead
Replies: 3
Views: 365
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 1:46 am Subject: RocketDock as part of taskbar |
| Since there are RocketDock users on this thread can I poke in a question? Anyone know how to reverse the icon order on RocketDock? If I change RocketDock position from Top/Bottom to Left/Right, the o ... |
Topic: Toggle Topmost attribute of active window with hotkey |
MilesAhead
Replies: 3
Views: 557
|
Forum: Scripts & Functions Posted: Sun Nov 15, 2009 10:17 pm Subject: Toggle Topmost attribute of active window with hotkey |
[url=http://www.autohotkey.net/~MilesAhead/Scripts/TopmostToggle.zip]Topmost Toggle is a simple script that toggles the topmost attribute of the active window.
Leave running in system tray, press C ... |
Topic: HDD Activity Monitoring LED |
MilesAhead
Replies: 34
Views: 14330
|
Forum: Scripts & Functions Posted: Sun Nov 15, 2009 8:50 pm Subject: Modified script |
| After looking at Sean's script I see he was using the initial call to get keyboard state as a save to be restored on program exit. Since the user may change the state of num lock or caps lock while t ... |
Topic: HDD Activity Monitoring LED |
MilesAhead
Replies: 34
Views: 14330
|
Forum: Scripts & Functions Posted: Thu Nov 12, 2009 8:49 pm Subject: Re: HDD Activity Monitoring LED |
This script monitors the (first) hard disk drive activity and shows it using ScrollLock LED.
PS. Don't forget to run "diskperf.exe -y" once to enable the HDD monitoring.
DOWNLOAD
T ... |
Topic: Set default browser for current user? |
MilesAhead
Replies: 2
Views: 156
|
Forum: Ask for Help Posted: Fri Sep 25, 2009 6:46 pm Subject: Set default browser for current user? |
| I know it's the google result. I found that already. It changes the default for all users. Anyway, I think I'll let the Browser Chooser author make his own enhancements. Going directly to the brows ... |
Topic: Set default browser for current user? |
MilesAhead
Replies: 2
Views: 156
|
Forum: Ask for Help Posted: Fri Sep 25, 2009 1:08 am Subject: Set default browser for current user? |
| Anyone know what registry keys to set in order to set the default browser for the current user from a script? |
Topic: Auto-Syntax-Tidy v12 |
MilesAhead
Replies: 60
Views: 19500
|
Forum: Scripts & Functions Posted: Thu Aug 06, 2009 6:54 pm Subject: Nice |
I'm still pretty new to AHK. I ran across this utility. Very nice. I'm lost without an auto-indenter. Thanks for the program.  |
Topic: command line params without Loop %0% ?? |
MilesAhead
Replies: 13
Views: 462
|
Forum: Ask for Help Posted: Sun May 03, 2009 6:47 pm Subject: command line params without Loop %0% ?? |
Well it is explained in the documentation what the difference between a legacy if and an
Yeah, I'm not trying to beat it over the head. I think it would be helpful though, to have more examples of ... |
Topic: command line params without Loop %0% ?? |
MilesAhead
Replies: 13
Views: 462
|
Forum: Ask for Help Posted: Sun May 03, 2009 5:45 pm Subject: command line params without Loop %0% ?? |
If (0 > 0 && 1 = "/q")
Correct me if I'm wrong, but I don't think you can use the command line variables in an Expression If. Won't they but taken as a literal 0 and ... |
Topic: command line params without Loop %0% ?? |
MilesAhead
Replies: 13
Views: 462
|
Forum: Ask for Help Posted: Sun May 03, 2009 1:05 am Subject: command line params without Loop %0% ?? |
Would transferring it to a sanely named variable help? You could just start your script with this:
Arg1 = %1%
And then you can do whatever you want with Arg1 from there.
Thanks. I've seen a few ... |
Topic: command line params without Loop %0% ?? |
MilesAhead
Replies: 13
Views: 462
|
Forum: Ask for Help Posted: Thu Apr 30, 2009 7:37 pm Subject: command line params without Loop %0% ?? |
Thanks for the reply. I found this
http://www.autohotkey.com/forum/viewtopic.php?t=43520command+line+switches
What's totally baffling to me is that
If (0 > 0 && 1 = /q) ... |
| |