Shyin
New Member
Posts: 6
|
Post by Shyin on Oct 15, 2004 15:51:41 GMT -5
Ok, with autoit is there a command to play a noise when you recieve a tell? Rather than using a <call> macro which can show GMs that you may have been AFK?
Is there something that can play a file, like maybe Play(C:\Documents and Settings\My Folder\My Documents\Tell.wav)?
|
|
metalo
Junior Member
Posts: 50
|
Post by metalo on Oct 15, 2004 16:08:47 GMT -5
Yes to play mp3 and/or wav I think all you have to do is the following:
Uber kewl with String filename: $soundfile="C:\SOUND\kick_a.mp3" SoundPlay($soundfile)
Or you could just do Still Uber Kewl with no string as filename: SoundPlay("C:\SOUND\kick_a.wav")
Metalo
|
|
|
Post by youfuck on Nov 8, 2015 15:48:33 GMT -5
Local $soundfile = "C:\SOUND\kick_a.wav" SoundPlay($soundfile)
SoundPlay("C:\SOUND\kick_a.wav", 1)
|
|