Search found 713 matches
- 31 Oct 2020, 13:07
- Forum: Ask For Help
- Topic: Reverse Sort Listview?
- Replies: 5
- Views: 126
Re: Reverse Sort Listview?
thanks Jim! whoops, edit - "SortDesc" just alphabetially reverses the list, so Z would be at the top of the list. I was hoping to first load in the listview (which is loaded from a randomly-sorted, non-alphabeticalized text file), and then when the list is loaded, just reverse its order so the botto...
- 31 Oct 2020, 02:55
- Forum: Ask For Help
- Topic: Reverse Sort Listview?
- Replies: 5
- Views: 126
Re: Reverse Sort Listview?
oops, it might help if I actually included that line of code (d'oh!)...
LV_ModifyCol(1,"Sort")
LV_ModifyCol(1,"Sort")
- 31 Oct 2020, 02:54
- Forum: Ask For Help
- Topic: Reverse Sort Listview?
- Replies: 5
- Views: 126
Reverse Sort Listview?
Hi everyone I'm using this line in my code, and it sorts the listview alphabetically - but this isn't what I'm looking to do. What do I have to change here in order to sort the listview in reverse-order? (bottom line of listview will appear at top).. I can't find the proper info or syntax in the doc...
- 29 Oct 2020, 23:30
- Forum: Scripts and Functions
- Topic: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
- Replies: 110
- Views: 28918
Re: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
I thought HotVoice wasn't working on my system because I'm running Windows 7. So I installed it on my Windows 10 laptop... and wouldn't you know it, exact same error: Hotvoice.dll failed to load....
still baffled by this, I don't know how everyone else got this to work
still baffled by this, I don't know how everyone else got this to work

- 26 Sep 2020, 18:59
- Forum: Ask For Help
- Topic: Notepad++ Skewing IfWinExist Results
- Replies: 5
- Views: 148
Re: Notepad++ Skewing IfWinExist Results
Thanks gregster! I was missing the - AutoHotkey portion on the IfWinExist line. Now it works.
Sorry about all the delays in my responses as of late - with summer coming to an end, I've been in and out of the house all day long trying to squeeze in as much as the remaining season that I can
Sorry about all the delays in my responses as of late - with summer coming to an end, I've been in and out of the house all day long trying to squeeze in as much as the remaining season that I can

- 26 Sep 2020, 12:06
- Forum: Ask For Help
- Topic: Notepad++ Skewing IfWinExist Results
- Replies: 5
- Views: 148
Re: Notepad++ Skewing IfWinExist Results
On second thought, the WinTitle of the file in Notepad++ is:
C:\MyScript.ahk - Notepad++
But my code doesn't have SetTitleMatchMode, 2 in it, so why is the code picking this file up in Notepad++?
C:\MyScript.ahk - Notepad++
But my code doesn't have SetTitleMatchMode, 2 in it, so why is the code picking this file up in Notepad++?
- 26 Sep 2020, 11:53
- Forum: Ask For Help
- Topic: Notepad++ Skewing IfWinExist Results
- Replies: 5
- Views: 148
Notepad++ Skewing IfWinExist Results
So I've been tearing out my hair these past few days trying to understand what the heck is going on with my script lol. I was using this code: z:: DetectHiddenWindows, On pathToScript = C:\MyScript.ahk IfWinExist, %pathToScript% msgbox yes it is running else msgbox no it is not running return and ev...
- 23 Sep 2020, 09:04
- Forum: Ask For Help
- Topic: Get Latest File On System
- Replies: 10
- Views: 549
Re: Get Latest File On System
Hi, yes, I was looking to detect the latest file added anywhere on the entire system. It may have been copied/pasted from another location, or maybe a new saved file from an app..doesn't matter, so long as the file has been written anywhere on any of the hard drives. But I managed to narrow the sear...
- 21 Sep 2020, 22:59
- Forum: Ask For Help
- Topic: Get Latest File On System
- Replies: 10
- Views: 549
Re: Get Latest File On System
thanks guys, and sorry for the delay here. I'm going to check out some of those links. I like flyingDman's script as well, this is actually super-useful. I imagine many other users will love to have it in their collection. I managed to narrow it down to the exact folder I want to monitor for the new...
- 19 Sep 2020, 20:20
- Forum: Ask For Help
- Topic: Get Latest File On System
- Replies: 10
- Views: 549
Get Latest File On System
Greets I'm wondering if there is a way to find the most recent file written to any directory on the system. The file would be a .jpeg I know how to get the latest file in a particular folder, but is there a quick way to just find the overall newest file regardless of what location it's in? Or would ...
- 17 Sep 2020, 12:33
- Forum: Ask For Help
- Topic: Close all scripts except two?
- Replies: 5
- Views: 274
Re: Close all scripts except two?
Thanks guys!
I tested both approaches and they both work perfectly.

I tested both approaches and they both work perfectly.



- 17 Sep 2020, 00:12
- Forum: Ask For Help
- Topic: Close all scripts except two?
- Replies: 5
- Views: 274
Re: Close all scripts except two?
whoops, sorry!! Geez I totally meant to follow up with the code but got distracted.. keepIT := "Master.ahk" ;keep this script alive but close all others for process in ComObjGet("winmgmts:").ExecQuery("Select * from Win32_Process where name = 'Autohotkey.exe' and not CommandLine like '%" keepIT "%' ...
- 16 Sep 2020, 23:38
- Forum: Ask For Help
- Topic: Close all scripts except two?
- Replies: 5
- Views: 274
Close all scripts except two?
Greetings all Using a seperate script (I will call this the "Master" script), I want to be able to shut down all running scripts except two of them. These two are: 1. The "Master" script itself 2. "MyScript.ahk" Maybe it would look something like this: ;Master.ahk z:: Keep "Master.ahk" alive ;which ...
- 27 Aug 2020, 01:25
- Forum: Ask For Help
- Topic: Volume Slider Progress Bar Question
- Replies: 5
- Views: 140
Re: Volume Slider Progress Bar Question
Hey Joe! This one is awesome!!! I really like the idea of the hotkeys showing the progress bar- it just gave me a whole set of new ideas on how to adapt your code for additional uses. The 10% increments actually make a whole lot more sense. My son also needs a volume control script for his laptop, s...
- 26 Aug 2020, 12:35
- Forum: Ask For Help
- Topic: Volume Slider Progress Bar Question
- Replies: 5
- Views: 140
Re: Volume Slider Progress Bar Question
thanks colt! It works now. yeah this is a nice little Volume Control script, which could probably be used for additional controls like Microphone, Mixer, etc. I don't know if Pulover is still on the forums but it's all thanks to him. This was the related information to the original code: ; ; ::Progr...
- 25 Aug 2020, 23:55
- Forum: Ask For Help
- Topic: Volume Slider Progress Bar Question
- Replies: 5
- Views: 140
Volume Slider Progress Bar Question
Hi again, I found a script on the forums by the user Pulover , and it's a progress bar that kind of acts like a slider. I modified it a little bit so it acts as a volume slider. It actually works perfect, but there is one small problem: 1. Run the script 2. Pull the progress bar (slider) to the left...
- 23 Aug 2020, 22:23
- Forum: Ask For Help
- Topic: Empty Variable Reference Problem
- Replies: 2
- Views: 257
Re: Empty Variable Reference Problem
oh man, I knew it was easy. Thanks boiler!
- 23 Aug 2020, 21:14
- Forum: Ask For Help
- Topic: Empty Variable Reference Problem
- Replies: 2
- Views: 257
Empty Variable Reference Problem
Hi there I think I have a simple syntax issue here. I have this: GuiControlGet, SliderBar%A_Index%, Pos msgbox, %SliderBar%A_Index%% basically, I am trying to capture SliderBar%A_Index% as a single variable. What would be the proper syntax for msgbox, %SliderBar%A_Index%% ? right now it just says it...
- 21 Jul 2020, 00:36
- Forum: Scripts and Functions
- Topic: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
- Replies: 110
- Views: 28918
Re: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
I'm pretty sure I've figured out the #include Lib\HotVoice.ahk issues because I am no longer seeing the error which states it cannot find the HotVoice.ahk in the Lib folder, but the "HotVoice.dll failed to load" error still happens when I run Demo.ahk But - If I compile Demo.ahk and then run the .ex...
- 20 Jul 2020, 12:47
- Forum: Scripts and Functions
- Topic: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
- Replies: 110
- Views: 28918
Re: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
There's only one command in the unblocker ps1 script - just make sure you have an admin powershell prompt active, copy the one line of code from the ps1 file, then paste it into an admin powershell prompt and run it The alternative to even needing the blocker is to unblock the files whilst they are...