Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Playing Audio Using Keystrokes: Is It Possible?

Annabelle5893

Gold Coder
I'm wondering, how would I make an app that plays audio files using the keys on the number pad? Specifically, I want to make an app that triggers "Rotary Pulse 1" by pressing 1 on the numeric keypad, all the way up to "Rotary Pulse 0" on the 0 key. A dial tone will be toggled on by pressing the spacebar, which will begin with a "receiver pickup" noise. The dial tone turns off when digits are dialed via the numeric keypad. If you press the spacebar either when the dial tone is on, or after dialing a number, a "Receiver Hang Up" noise will be triggered. With the rotary dial sounds, the dial turning to the fingerhole is triggered at key down, and the release of the dial returning to the resting position will be triggered by releasing of the number corresponding to the fingerhole (1, 2, 3, 4, 5, 6, 7, 8, 9, 0). This will be accompanied by the internal sound of the dial pulses as heard in a telephone. What is the code I would use to make this audio app using HTML?
 
The name including the full path when opened by itself in Mozilla Firefox, it shows up as "file:///M:/Documents/Virtual%20Phone/Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3". Does that look right?
As I mentioned before, you don't need the entire file path if the file itself lives inside your project folder. He was pointing out that you have a different filename than the one you use.
 
As I mentioned before, you don't need the entire file path if the file itself lives inside your project folder. He was pointing out that you have a different filename than the one you use.
I don't understand how the file name could be different from the one I use. Is it this part?
Code:
var ringingTone=new Audio('Ringing Tone/Princess%20702B%20Bell%20Ring.mp3');
Or is it this part?
[CODE
<audio id="RingingTone" type="audio/mpeg" src="Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3"></audio>
[/CODE]
 
I think I've discovered where I went wrong! Does this look better?
Code:
<audio id="RingingTone" type="audio/mpeg" src="Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3"></audio>
And how about this?
Code:
    var ringRing=new Audio('Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3');
 
I think I've discovered where I went wrong! Does this look better?
Code:
<audio id="RingingTone" type="audio/mpeg" src="Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3"></audio>
And how about this?
Code:
    var ringRing=new Audio('Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3');

No. It's exactly the same name with the %20702B in it which looks really suspicious.

Actually you'd be wise not to use spaces in filenames. It would just be easier to read and maintain.
 
Ah ok. I assumed there was something going on with weird characters, also because the error message mentions this name

Ringing%20Tone/Princ_20Bell%20Ring.mp3

but I now think that might be the same name, just abbreviated f0r display with an underscore in the middle. Perhaps when you make that window a bit wider it would display the full name ? In that case the webserver simply cannot find the file as it says. Check the name and the correct location.
 
Ah ok. I assumed there was something going on with weird characters, also because the error message mentions this name

Ringing%20Tone/Princ_20Bell%20Ring.mp3

but I now think that might be the same name, just abbreviated f0r display with an underscore in the middle. Perhaps when you make that window a bit wider it would display the full name ? In that case the webserver simply cannot find the file as it says. Check the name and the correct location.
Is there a keyboard shortcut to make the browser window wider?
 
I don't know, I always use the mouse. It would have to be the debugger window that you'd need to make wider. But forget that, it does not look like browsers abbreviate names like that. Looks like it is really looking for a file that isn't there.
I know the file it's looking for, but I'm not sure why it can't find it, because I know it's there. And, I tried posting it as an attachment in this post, but there's a message that says .mp3 is not an allowed extension on Code Forum.
 
I know the file it's looking for, but I'm not sure why it can't find it, because I know it's there. And, I tried posting it as an attachment in this post, but there's a message that says .mp3 is not an allowed extension on Code Forum.
Why would you want to post the mp3 ? To prove that it exists ? The webserver evidently thinks differently. In situations like this I always run Process Monitor and look for the name of the file it tries to open. Chances are that it's not what you think it is, or it is but it's in another location. It is time to look for hard evidence instead of going by circumstantial evidence.
 
Why would you want to post the mp3 ? To prove that it exists ? The webserver evidently thinks differently. In situations like this I always run Process Monitor and look for the name of the file it tries to open. Chances are that it's not what you think it is, or it is but it's in another location. It is time to look for hard evidence instead of going by circumstantial evidence.
Process Monitor? What's that?
 
Here's something interesting. Now I've added a new variable, and it says I'm missing a } at the line 99:24. Here's the code.
Code:
        var Ringback=new Audio('Call%20Progress%20Tones/Ringback%20Tones/USA%20Ringback%20Tone.mp3');
        Ringback.play();
    }
}
Does this look right to you?
 
Here's something interesting. Now I've added a new variable, and it says I'm missing a } at the line 99:24. Here's the code.
Code:
        var Ringback=new Audio('Call%20Progress%20Tones/Ringback%20Tones/USA%20Ringback%20Tone.mp3');
        Ringback.play();
    }
}
Does this look right to you?
Can you post the entire function?
 
Here ya go!
Code:
<html>
<div role="switch" aria-labelledby="id-label">
  <label for="Hookswitch Status"
  <button type="button"
          role="switch"
  id="hookswitchStatus">Hookswitch Status:
    <span class="hookStatus on">
    </span>
  </label>
  </button>
</div>
<audio autoplay="true"></audio>
<audio id="dialTone" type="audio/mpeg" src="Call%20Progress%20Tones/Dial%20Tone/USA%20Dial%20Tone.mp3"></audio>
<audio id="busyTone" type="audio/mpeg" src="Call%20Progress%20Tones/Busy%20Tone/USA%20Busy%20Tone.mp3"></audio>
<audio id="RingbackTone" type="audio/mpeg" src="Call%20Progress%20Tones/Ringback%20Tone/USA%20Ringback%20Tone.mp3"></audio>
<audio id="TimeoutHowler" type="audio/mpeg" src="Call%20Progress%20Tones/Receiver%20Off%20Hook%20Tone/USA%20Receiver%20Off%20Hook%20Tone.mp3"></audio>
<audio id="RingingTone" type="audio/mpeg" src="Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3"></audio>
<audio id="DTMFToneDial1" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%201.mp3"></audio>
<audio id="DTMFToneDial2" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%202.mp3"></audio>
<audio id="DTMFToneDial3" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%203.mp3"></audio>
<audio id="DTMFToneDial4" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%204.mp3"></audio>
<audio id="DTMFToneDial5" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%205.mp3"></audio>
<audio id="DTMFToneDial6" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%206.mp3"></audio>
<audio id="DTMFToneDial7" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%207.mp3"></audio>
<audio id="DTMFToneDial8" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%208.mp3"></audio>
<audio id="DTMFToneDial9" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%209.mp3"></audio>
<audio id="DTMFToneDialStar" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%20Star.mp3"></audio>
<audio id="DTMFToneDial0" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%200.mp3"></audio>
<audio id="DTMFToneDialPound" type="audio/mpeg" src="DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%20Pound.mp3"></audio>
<audio id="OneSlotUSAPayphoneNickelTone" type="audio/mpeg" src="Payphone%20Coin%20Tones/One-Slot%20Payphone/USA%20Payphone%20Nickel%20Tone.mp3"></audio>
<audio id="OneSlotUSAPayphoneDimeTone" type="audio/mpeg" src="Payphone%20Coin%20Tones/One-Slot%20Payphone/USA%20Payphone%20Dime%20Tone.mp3"></audio>
<audio id="OneSlotUSAPayphoneQuarterTone" type="audio/mpeg" src="Payphone%20Coin%20Tones/One-Slot%20Payphone/USA%20Payphone%20Quarter%20Tone.mp3"></audio>
<audio id="OneSlotUSAPayphoneHalfDollarTone" type="audio/mpeg" src="Payphone%20Coin%20Tones/One-Slot%20Payphone/USA%20Payphone%20Half%20Dollar%20Tone.mp3"></audio>
<audio id="OneSlotUSAPayphoneDollarTone" type="audio/mpeg" src="Payphone%20Coin%20Tones/One-Slot%20Payphone/USA%20Payphone%20Dollar%20Tone.mp3"></audio>
    <p>Click the buttons or press keyboard shortcuts to hear sounds</p>
<div id="DTMF" style="display: block;">
<center><p class="TONETYPE">DTMF DIALING TONES</p></center>
<button type="button" id="DTMF1">1</button>
<button type="button" id="DTMF2">2</button>
<button type="button" id="DTMF3">3</button>
<button type="button" id="DTMF4">4</button>
<button type="button" id="DTMF5">5</button>
<button type="button" id="DTMF6">6</button>
<button type="button" id="DTMF7">7</button>
<button type="button" id="DTMF8">8</button>
<button type="button" id="DTMF9">9</button>
<button type="button" id="DTMFStar">Star</button>
<button type="button" id="DTMF0">0</button>
<button type="button" id="DTMFPound">Pound</button>
</div>
<div id="ACTS" style="display: block;">
<center><p class="TONETYPE">1-SLOT COIN DEPOSIT SOUNDS</p></center>
<button type="button" id="ACTS5">$0.05</button>
<button type="button" id="ACTS10">$0.10</button>
<button type="button" id="ACTS25">$0.25</button>
<button type="button" id="ACTS50">$0.50</button>
<button type="button" id="ACTS100">$1.00</button>
</div>
<script>
var hookSwitch = document.querySelector('button.hookSwitch');
    var hookswitchStatus = document.querySelector('span.hookStatus');
hookswitchStatus.addEventListener("click", function(){
    if ( hookswitchStatus.classlist.contains('off') ){
        //remove 'off' class
        hookswitchStatus.classlist.remove('off');  
        //add 'on' class
        hookswitchStatus.classlist.add('on');
        //change span text
        hookswitchStatus.textContent = "Off Hook";  
    }
    else {
        if ( hookStatus.classlist.contains('on') ){
            //remove 'on' class
            hookStatus.classlist.remove('on');  
            //add 'off' class
            hookStatus.classlist.add('off');
            //change span text
            hookStatus.textContent = "Off Hook";
        }
    }
})
var dialTone=new Audio('Call%20Progress%20Tones/Dial%20Tone/USA%20Dial%20Tone.mp3');
var isOffHook=false;
var callIncoming=false;
var allowDial = true;
var ringingTone=new Audio('Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3');
var timesRung=0;
var availableNumbers=["0","611","711","811","911","*67 + 1 (847) 765-1008","1 (847) 765-1008","867-5309",
                        "1 (212) 456-1414","555-1212","555-5555","748-0900","650-0050","650-8950",
                        "970-3920","1 (714) 733-9969","*57","*69"];
        var Ringback=new Audio('Call%20Progress%20Tones/Ringback%20Tones/USA%20Ringback%20Tone.mp3');
        Ringback.play();
    }
}


function reload(){
    location.reload(true);
}

function toggleLineStatus() {
    var number="";
    var pin="";
    var checkForPin=false;
    document.getElementById('numberbeingdialed').innerHTML=number;
    var wasOnHook=false;

    if(!offHook){
        offHook=true;
        document.getElementById('hookstatus').innerHTML="Off";
        wasOnHook=true;
    } else {
        offHook=false;
        document.getElementById('hookstatus').innerHTML="On";
        clunk.pause();
        ringback.pause();
        clunk.currentTime=0;
        ringback.currentTime=0;
    }
 
    if(ringbackDialed){
        startRingback();
    } else {
        if(wasOnHook){
            ring.pause();
            ring.currentTime=0;
            playDialTone();
            dialingAllowed=true;
            nextDigitDialable=true;
            ringbackDialed=false;
            keepPlaying=true;
        }
        else {
            stopDialTone();
            setOpacity(100);
            allCircuitsBusy=false;
            keepPlaying=false;
        }
    }
}

function numberSuggestion(){
    var randomNumber=Math.floor(Math.random()*(availableNumbers.length));
    var suggestedNumber=availableNumbers[randomNumber];
    document.getElementById("suggestion").innerHTML="How about dialing <strong id='suggestedTelephoneNumber'>"+
                                                    suggestedNumber+
                                                    "</strong>? Don't like this number? Click the button above again!";
}

function receiverRaised(){
    if(allowDial == false) {
        telephoneAnswered()
    }
 
    if(allowDial == true) {
        dialTone.play();
    } else {
        offHook ();
        timeoutHowler.play();
    }
}

setCallTimeout();

function setCallTimeout(){
    var delay=5000;
    var delayCaller=Math.floor((Math.random()*8000)+1);
    delay=delay+delayCaller;
    setTimeout(incomingCall,delay);
}

function offHook(){
    isOffHook=true;
    document.getElementById("WE2500").style.display="none";
    document.getElementById("dialPad").style.display="block";
}

function dialToneTimedOut() {
    allowDial=false;
    timeoutHowler();
    if(DialToneTimedOut == true) {
        timeoutHowler.play();
        timeoutHowler.currentTime=0;
    }
}
    var ringRing=new Audio('Call%20Progress%20Tones/Ringing%20Tone/Princess%20702B%20Bell%20Ring.mp3');
    var hasTelephoneBeenAnswered=false;
    ringTelephone();

function incomingCall(){
}

function ringTelephone(){
    if(!hasTelephoneBeenAnswered) {
        ringRing.play();
        ringRing.currentTime=0;
    }
     else {
    if(isOffHook == false) {
        ringRing.play();
    }
    if(allowDial == false) {
        callIncoming=true;
        setInterval(ringTelephone,5500);
    }
}

var number="";
var timeout="";

function numberDial() {
    if(dialTone){
        dialTone.pause();
        dialTone.currentTime=0
    }
}

function dial1() {
    if(allowDial == true) {
        numberDial();
        number=number+"1";
        var DTMFToneDial1=new Audio('DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%201.mp3');
        DTMFToneDial1.play();
    }
}

function dial2() {
    if(allowDial == true); {
        numberDial();
        number=number+"2";
        var DTMFToneDial2=new Audio('DTMF%20Tone%20Dials/DTMF%20Tone%20Dial%202.mp3');
        DTMFToneDial2.play();
    }
}

function dial3() {
    if(allowDial == true); {
        numberDial();
        number=number+"3";
        var DTMFToneDial3=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 3.mp3');
        DTMFToneDial3.play();
    }
}

function dial4() {
    if(allowDial == true) {
        numberDial();
        number=number+"4";
        var DTMFToneDial4=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 4.mp3');
        DTMFToneDial4.play();
    }
}

function dial5() {
    if(allowDial == true) {
        numberDial();
        number=number+"5";
        var DTMFToneDial5=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 5.mp3');
        DTMFToneDial5.play();
    }
}

function dial6() {
    if(allowDial == true) {
        numberDial();
        number=number+"6";
        var DTMFToneDial6=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 6.mp3');
        DTMFToneDial6.play();
    }
}

function dial7() {
    if(allowDial == true) {
        numberDial();
        number=number+"7";
        var DTMFToneDial7=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 7.mp3');
        DTMFToneDial7.play();
    }
}

function dial8() {
    if(allowDial == true) {
        numberDial();
        number=number+"8";
        var DTMFToneDial8=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 8.mp3');
        DTMFToneDial8.play();
    }
}

function dial9() {
    if(allowDial == true) {
        numberDial();
        number=number+"9";
        var DTMFToneDial9=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 9.mp3');
        DTMFToneDial9.play();
    }
}

function dialStar() {
    if(allowDial == true) {
        numberDial();
        number=number+"*";
        var DTMFToneDialStar=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial Star.mp3');
        DTMFToneDialStar.play();
    }
}

function dial0() {
    if(allowDial == true) {
        numberDial();
        number=number+"0";
        var DTMFToneDial0=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial 0.mp3');
        DTMFToneDial0.play();
    }
}

function dialPound(){
    if(allowDial == true) {
        numberDial();
        number=number+"#";
        var DTMFToneDialPound=new Audio('DTMF%20Tone%20Dials/DTMF Tone Dial Pound.mp3');
        DTMFToneDialPound.play();
    }
}

//this is missing a closing bracket for the function itself at the end
document.onkeydown = function (event) {
    switch (event.keycode) {
        case 13:
            button.addEventListener('click', function() {
                        toggleLineStatus();
            })
            break;
        case 49,97:
            button.addEventListener('click', function() {
                        dial1();
            })
            break;
        case 50,98:
            button.addEventListener('click', function() {
                        dial2();
            })
            break;
        case 51,99:
            button.addEventListener('click', function() {
                        dial3();
            })
            break;
        case 52,100:
            button.addEventListener('click', function() {
                        dial4();
            })
            break;
        case 53,101:
            button.addEventListener('click', function() {
                        dial5();
            })
            break;
        case 54,102:
            button.addEventListener('click', function() {
                        dial6();
            })
            break;
        case 55,103:
            button.addEventListener('click', function() {
                        dial7();
            })
            break;
        case 56,104:
            button.addEventListener('click', function() {
                        dial8();
            })
            break;
        case 57,105:
            button.addEventListener('click', function() {
                        dial9();
            })
            break;
        case 106:
            button.addEventListener('click', function() {
                        dialStar();
            })
            break;
        case 48,96:
            button.addEventListener('click', function() {
                        dial0();
            })
            break;
        case 109:
            button.addEventListener('click', function() {
                        dialPound();
            })
            break;
}
}

//this function is missing a closing bracket for the function itself at the end
function ring() {
    ringingTone.play();
    timesRung++;
    if(timesRung>1) {
        setTimeout(response,700);
    }
    }

function dial(){
    allowDial=false;
    ring();
    setTimeout(ring,4000);
}


function busy() {
    busyTone();
    }

function busyTone() {
    var pickupBusy=new Audio('Call%20Progress%20Tones/Busy%20Tone/USA%20Busy%20Tone.mp3');
    pickupBusy.play();
    pickupBusy.currentTime=0;
    setInterval(busyTone,4000);
    }
    
function operatorPutCallThrough() {
    operatorPickup.play(true);
}

function response(){
    switch(number) {
        case "0":
            var operatorPickup=new Audio('callResponses/OperatorAnswer.wav');
            operatorPickup.addEventListener("click", function() {
                number=prompt("Operator, your number please? (Numbers only; enter 'police' for police and emergency)");
                if(number==null){
                    number="0";
                }
})
            break;
        case "611":
            var pickup611=new Audio('callResponses/611.wav');
            pickup611.addEventListener("click", function(){
                timeoutHowler();
                pickup611.play();
            })
            break;
        case "711":
            var pickup711=new Audio('callResponses/tdd-1.mp3');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickup711.addEventListener("click", function() {
                timeoutHowler();
                pickup711.play();
            })
            break;
        case "811":
            var pickup811=new Audio('callResponses/811.wav');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickup811.addEventListener("click", function() {
                timeoutHowler();
                pickup811.play();
            })
            break;
        case "911":
            var pickup911=new Audio('callResponses/911-xxx-fleet.mp3');
            pickup911.addEventListener("click", function() {
                timeoutHowler();
                pickup911.play();
            })
            break;
        case "18477651008":
            var pickupMCI=new Audio('callResponses/MCI.wav');
            pickupMCI.addEventListener("click", function() {
                timeoutHowler();
                pickupMCI.play();
            })
            break;
        case "8675309":
            var pickup8675309=new Audio('callResponses/discoornis-bell-f1.mp3');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickup8675309.addEventListener("click", function () {
                timeoutHowler();
                pickup8675309.play();
            })
            break;
        case "12124561414":
            var pickup12124561414=new Audio('callResponses/discoornis-bell-f1.mp3');
            pickup12124561414.addEventListener("click", function() {
                busy();
                pickup12124561414.play();
            })
            break;
        case "5551212":
            var pickup5551212=new Audio('callResponses/Dirassist-bell-f1.mp3');
            pickup5551212.addEventListener("click", function() {
                busy();
                pickup5551212.play();
            })
            break;
        case "5555555":
            var pickup5555555=new Audio('callResponses/timeout-xxx-fleet.mp3');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickup5555555.addEventListener("click", function() {
                timeoutHowler();
                pickup5555555.play();
            })
            break;
        case "7480900":
            var pickupSelf=new Audio('callResponses/partyline-xxx-fleet.mp3');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickupSelf.addEventListener("click", function() {
                busy();
                pickupSelf.play();
            })
            break;
        case "18005820655":
            var pickup18005820655=new Audio('callResponses/discoornis-bell-f1.mp3');
            pickup18005820655.addEventListener("click", function() {
                busy();
                pickup18005820655.play();
            })
            break;
        case "6508950":
            var pickupAM=new Audio('callResponses/answering-machine-1.mp3');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickupAM.addEventListener("click", function() {
                pickupAM.play();
            })
            break;
        case "6500050":
            var pickupModem=new Audio('modem.wav');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickupModem.addEventListener("click", function() {
                pickupModem.play();
            })
            break;
        case "9703920":
            var pickupFax=new Audio('fax-1.mp3');
            pickupFax.addEventListener("click", function() {
                pickupFax.play();
            })
            break;
        case "17147339969":
            var pickup714=new Audio('device-conference.mp3');
            pickup714.addEventListener("click", function() {
                pickup714.play();
            })
            break;
        case "8217147339969":
            var pickup8217147339969=new Audio('device-conference.mp3');
            pickup8217147339969.addEventListener("click", function() {
            pickup8217147339969.play(); //remove the space before the asterisk
            })
            break;
        case "*6717147339969":
            var pickup6717147339969=new Audio('callResponses/reject2-xxx-fleet.mp3');
            pickup6717147339969.addEventListener("click", function() {
                timeoutHowler();
                pickup714block.play();
            })
            break;
        case "*57":
            var randNum57=Math.random()>=0.5;
            if(randNum57) {
                var pickupCallTrace=new Audio('callResponses/trace3-xxx-fleet.mp3');
            }
            else {
                var pickupCallTrace=new Audio('callResponses/trace-xxx-fleet.mp3');
                pickupCallTrace.addEventListener("click", function() {
                    timeoutHowler();
                    pickupCallTrace.play();
                })
}
            break;
        case "*69":
            var pickupStar69=new Audio('callResponses/return-xxx-fleet.mp3');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickupStar69.addEventListener("click", function() {
                timeoutHowler();
                pickupStar69.play();
            })
            break;
        case "police":
            var pickupPolice=new Audio('callResponses/policePickup.wav');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            pickupPolice.addEventListener("click", function() {
                timeoutHowler();
                pickupPolice.play();
                var policeComplaint=prompt("Police Department, Sergeant Duffy Speaking.");
                confirm("Really? You say that "+policeComplaint);
})  
          var policeHangup=new Audio('callResponses/policeHangup.wav');
            //this function call is missing a closing parenthesis for the function itself at the end, just before the break
            policeHangup.addEventListener("click", function() {
                timeoutHowler();
            })
            break;
        default:
            var pickupDefault;
            if(number.length>7){
                pickupDefault=new Audio('callResponses/ldcircuits-bell-f1.mp3');
            }
            else {
                pickupDefault=new Audio('callResponses/completeordc-xxx-fleet.mp3');
                pickupDefault.addEventListener("click", function() {
                    timeoutHowler();
                    pickupDefault.play();
                })
                }
            break;
    }
}
}
</script>

</BODY>
</HTML>
 
It seems I can manually trigger the playing of files by pressing the "Play" button next to them on the "Info" page's "Media" tab in Firefox. However, I can't seem to get anything to play when pressing any keystrokes. What did I do wrong? 1705698210499.png
 

New Threads

Buy us a coffee!

Back
Top Bottom