Untitled

mail@pastecode.io avatar
unknown
autohotkey
a year ago
759 B
4
Indexable
#Requires AutoHotkey v2.0
!x::															;In dieser Zeile kann der Shortcut gesetzt werden https://www.autohotkey.com/docs/v2/Hotkeys.htm
{
SoundSetMute -1,, 7
if (SoundGetMute( , 7) = 0 and FileExist("listening.mp3"))  	;prüft ob die vorzugswürdige sounddatei im selben verzeichnis wie das skript gefunden wird. Wenn das nicht der Fall ist, wird auf einen Windows-Sound zurückgegriffen
{
SoundPlay "listening.mp3"
}
if (SoundGetMute( , 7) = 0 and not FileExist("listening.mp3"))	;ja man hätte auch else if nehmen und den code verkürzen können, mir egal.
{
SoundPlay "*48"
}
if (SoundGetMute( , 7) = 1 and FileExist("muted.mp3"))
{
SoundPlay "muted.mp3"
}
if (SoundGetMute( , 7) = 1 and not FileExist("muted.mp3"))
{
SoundPlay "*16"
}
}
Return


	

Leave a Comment