Search found 6 matches
- 12 Aug 2019, 09:35
- Forum: Bug Reports
- Topic: SetKeyDelay removing duplicate characters
- Replies: 5
- Views: 1404
Re: SetKeyDelay removing duplicate characters
Each time the script runs it's always the case that these "+" or "_" duplicate characters are the ones that never make it. I would be convinced of SetKeyDelay, 0 being too fast if other characters were to go missing as well.
- 09 Aug 2019, 09:03
- Forum: Bug Reports
- Topic: SetKeyDelay removing duplicate characters
- Replies: 5
- Views: 1404
Re: SetKeyDelay removing duplicate characters
Assumptions for this program's execution: • "this__is_a_test" is on your clipboard • a command line window whose name contains "MINGW" is open 1. The code you have submitted, while it works, does not demonstrate your problem. In your sample code, you have not placed anything on the clipboard, and so...
- 05 Aug 2019, 10:47
- Forum: Bug Reports
- Topic: SetKeyDelay removing duplicate characters
- Replies: 5
- Views: 1404
SetKeyDelay removing duplicate characters
I'm trying to automate some find commands and I stumbled upon double underscores being printed as single underscores: this__is__a_test -> this_is_a_test or this++is++a+test -> this+is+a+test ahkerror.PNG Text was sent to a MINGW command line (running on Windows 10) When I removed the SetKeyDelay, 0 ...
- 26 Nov 2017, 22:39
- Forum: Ask For Help
- Topic: Can't get length of wav file
- Replies: 6
- Views: 1292
Re: Can't get length of wav file
I knew I missed something while looking through the documentation. Thanks for your help! It works now.
- 26 Nov 2017, 17:46
- Forum: Ask For Help
- Topic: Can't get length of wav file
- Replies: 6
- Views: 1292
Re: Can't get length of wav file
Thanks for the reply.
The code above is working but the FileSelectFile dialog seems to slow things down a bit.
Is there a way to use a file path to get a file object to pass to GetAudioDuration() ?
Thanks again.
The code above is working but the FileSelectFile dialog seems to slow things down a bit.
Is there a way to use a file path to get a file object to pass to GetAudioDuration() ?
Thanks again.
- 26 Nov 2017, 16:30
- Forum: Ask For Help
- Topic: Can't get length of wav file
- Replies: 6
- Views: 1292
Can't get length of wav file
I've been looking around for a function to use within AHK to get the length of a .wav file. After searching I found fincs' Sound library. https://autohotkey.com/board/topic/19006-soundahk-sound-functions-for-use-with-autohotkey/ My program is essentially a clipboard text-to-speech converter. The maj...