Tom wrote: ↑Sep 24th, ’23, 13:14
Ctrl+D creates a duplicate in FastKeys and does not delete anything.
Your code works for me, do you have a speaker turned on?
I see. Though for me in regards to this command, it always just selects some number of shortcuts or/and deletes them... Speaker turned on, yes. SoundBeep works fine for me in several other commands. It just seems as though the if statement doesn't get picked up for some reason...
Tried:
• Just adding 'FastKeys', instead of '!FastKeys' (no single quotes)
• Putting
Code: Select all
if WinActive("!FastKeys")
{
SoundBeep 1500
}
on top
What's strange however, is that the code works for a shortcut like 'Ctrl + Alt + A', but not for 'Ctrl + D'. As in, the beep comes through... Even if you remove the if statement and just add 'SoundBeep 1500', 'Ctrl + D' still doesn't pick it up.
Also tried:
Code: Select all
SendLevel 1
SoundBeep 1500
SendLevel 0
Still no beep...
Also tried having it just open some random .mp3, in hopes of being able to later have some beep play a sound, whenever the command takes place inside of FastKeys... nothing... Good Lord...