| Author |
Message |
Topic: My status and website changes |
Jon
Replies: 87
Views: 14010
|
Forum: Announcements Posted: Tue Aug 30, 2011 8:09 pm Subject: My status and website changes |
I know I'm very late in replying but just wanted to thank Chris for all the effort he has put into AHK over the years.
From when I started using Autohotkey over 7 years ago, I have admired your de ... |
Topic: List extensions Firefox |
Jon
Replies: 3
Views: 5771
|
Forum: Scripts & Functions Posted: Sat Feb 02, 2008 10:24 pm Subject: List extensions Firefox |
This script is obsolete now.
If you need a list of extensions and you have a recent version of Firefox then go to "Tools" > "Addons". In the Addons window go to "Tools& ... |
Topic: Script to create note on files. |
Jon
Replies: 3
Views: 909
|
Forum: Ask for Help Posted: Sun Dec 23, 2007 6:41 pm Subject: Script to create note on files. |
| [url=http://www.autohotkey.com/forum/viewtopic.php?t=1640]MyNotes |
Topic: Scripts and functions forum - blocked by RM Filter |
Jon
Replies: 4
Views: 1399
|
Forum: General Chat Posted: Wed Dec 19, 2007 11:47 am Subject: Scripts and functions forum - blocked by RM Filter |
| Thanks, PM sent. |
Topic: Scripts and functions forum - blocked by RM Filter |
Jon
Replies: 4
Views: 1399
|
Forum: General Chat Posted: Wed Dec 19, 2007 11:34 am Subject: Scripts and functions forum - blocked by RM Filter |
Hello,
The "Scripts and functions" forum seems to be blocked by RM's school "Content Filter". I can still access individual topics in that forum though.
I am wondering if it ... |
Topic: Can you recommend any excellent software ??? |
Jon
Replies: 50
Views: 20488
|
Forum: General Chat Posted: Mon Nov 19, 2007 6:26 pm Subject: Can you recommend any excellent software ??? |
[url=http://www.bluebit.com.au/]DVB Web Scheduler Pro (PayWare - Old freeware version available if you can find it) - Brilliant for scheduling recordings via your TV tuner card.
[url=http://www.pro ... |
Topic: Get "Friendly name" for default audio device |
Jon
Replies: 3
Views: 1182
|
Forum: Ask for Help Posted: Thu Nov 08, 2007 9:42 pm Subject: Get "Friendly name" for default audio device |
what do you need the info for?
I just checked SoundGet, but it doesn't appear to provide this.
It's a long story
I am currently working in a primary school where we use some software calle ... |
Topic: Get "Friendly name" for default audio device |
Jon
Replies: 3
Views: 1182
|
Forum: Ask for Help Posted: Thu Nov 08, 2007 1:54 pm Subject: Get "Friendly name" for default audio device |
Hello,
I thought this would be easy to get but it seems more complicated that I thought. I am trying to get the name of the default audio device (as it appears in "sound/audio devices" i ... |
Topic: Compiler Speed - Which AHK2EXE is the fastest for me? |
Jon
Replies: 27
Views: 5375
|
Forum: Scripts & Functions Posted: Fri Aug 03, 2007 3:08 pm Subject: Compiler Speed - Which AHK2EXE is the fastest for me? |
It must require the latest version of Autohotkey because I couldn't get it to work properly at first. (it would only give the first result)
Time for standard compiler with UPX (in ms): ... |
Topic: does anyone want to make a package manager for windows? |
Jon
Replies: 3
Views: 1118
|
Forum: General Chat Posted: Sat Jul 21, 2007 10:25 pm Subject: does anyone want to make a package manager for windows? |
| I seem to remember someone already made such a script, at least one that does some popular apps like 7zip. However, I couldn't find it using a quick search on "Install" or "Unattended&q ... |
Topic: is this better than autoit window information tool? |
Jon
Replies: 5
Views: 5152
|
Forum: General Chat Posted: Wed Jul 11, 2007 11:41 am Subject: is this better than autoit window information tool? |
If you are looking for an alternative to Au3 spy then you might want to have a look at toralf's AHK Window info script as well-
[url=http://www.autohotkey.com/forum/viewtopic.php?p=54705]AHK Window ... |
Topic: Need help with a simple script |
Jon
Replies: 3
Views: 1057
|
Forum: Ask for Help Posted: Sat Jun 16, 2007 8:55 pm Subject: Need help with a simple script |
^!z::
WinGet, Count, Count, ahk_class IEFrame
loop, %Count%
{
WinGet, PID, PID, ahk_class IEFrame
If PID <> 204
{
winclose, ahk_pid %PID%
wi ... |
Topic: Start VB-script with parameter |
Jon
Replies: 25
Views: 29749
|
Forum: Ask for Help Posted: Sat Jun 16, 2007 6:22 pm Subject: Start VB-script with parameter |
run cscript.exe "%a_workingdir%\test.vbs"
or
run cmd /c cscript.exe "%a_workingdir%\test.vbs"
The only problem is that the command prompt window shows. You might be able t ... |
Topic: Need to customize/change compiled script ICON |
Jon
Replies: 2
Views: 932
|
Forum: Ask for Help Posted: Fri Jun 15, 2007 1:13 am Subject: Need to customize/change compiled script ICON |
On your start menu, under the Autohotkey menu, run "Convert .ahk to .exe"
That will let you specify your own icon. |
Topic: Does "Round(Number [, N])" accept a variable for & |
Jon
Replies: 2
Views: 850
|
Forum: Ask for Help Posted: Fri Jun 15, 2007 12:01 am Subject: Does "Round(Number [, N])" accept a variable for & |
| Round(Number If N is negative, Number is rounded by N digits to the left of the decimal point. For example, Round(345, -1) is 350 and Round (345, -2) is 300. Unlike Transform Round, the result has no ... |
| |