I'm stumped. Please advise what I'm doing wrong. My EFS snippet code follows:
function preMain() {
setPriceStudy(true);
Alert.playSound("C:\WINDOWS\Media\tada.wav");
debugPrint("Premain fired");
}
I expect to hear the "tada.wav" file, however, I only hear the default sound. I've tried other wav files all with the same resulting sound of the default sound only. I've also tried different path names such as:
Alert.playSound("c:\windows\media\tada.wav")
Alert.playSound("tada.wav")
Alert.playSound("C:\Program Files\eSignal\Sounds\doorbell.wav");
No luck. I've checked to be sure the tada.wav is in the correct path.
What am I doing wrong?
function preMain() {
setPriceStudy(true);
Alert.playSound("C:\WINDOWS\Media\tada.wav");
debugPrint("Premain fired");
}
I expect to hear the "tada.wav" file, however, I only hear the default sound. I've tried other wav files all with the same resulting sound of the default sound only. I've also tried different path names such as:
Alert.playSound("c:\windows\media\tada.wav")
Alert.playSound("tada.wav")
Alert.playSound("C:\Program Files\eSignal\Sounds\doorbell.wav");
No luck. I've checked to be sure the tada.wav is in the correct path.
What am I doing wrong?
Comment