Search completed in 1.45 seconds.
8 results for "onresume":
MediaRecorder.onresume - Web APIs
WebAPIMediaRecorderonresume
the mediarecorder.onresume event handler (part of the mediarecorder api) handles the resume event, allowing you to run code in response to the media recording being resumed after pausing.
... syntax mediarecorder.onresume = function(event) { ...
... pause.onclick = function() { if(mediarecorder.state === "recording") { mediarecorder.pause(); // recording paused } else if(mediarecorder.state === "paused") { mediarecorder.resume(); // resume recording } } mediarecorder.onpause = function() { // do something in response to // recording being paused } mediarecorder.onresume = function() { // do something in response to // recording being resumed } ...
... specifications specification status comment mediastream recordingthe definition of 'mediarecorder.onresume' in that specification.
SpeechSynthesisUtterance.onresume - Web APIs
WebAPISpeechSynthesisUtteranceonresume
the onresume property of the speechsynthesisutterance interface represents an event handler that will run when a paused utterance is resumed (when the resume event fires.) this occurs when the speechsynthesis.resume() method is invoked on a paused speech synthesis instance.
... syntax speechsynthesisutteranceinstance.onresume = function() { ...
... inputform.onsubmit = function(event) { event.preventdefault(); var utterthis = new speechsynthesisutterance(inputtxt.value); var selectedoption = voiceselect.selectedoptions[0].getattribute('data-name'); for(i = 0; i < voices.length ; i++) { if(voices[i].name === selectedoption) { utterthis.voice = voices[i]; } } synth.speak(utterthis); utterthis.onresume = function(event) { console.log('speech resumed after ' + event.elapsedtime + ' milliseconds.'); } inputtxt.blur(); } specifications specification status comment web speech apithe definition of 'onresume' in that specification.
Index - Web APIs
WebAPIIndex
2391 mediarecorder.onresume api, audio, media capture, media recorder api, mediarecorder, property, reference, video, onresume the mediarecorder.onresume event handler (part of the mediarecorder api) handles the resume event, allowing you to run code in response to the media recording being resumed after pausing.
...t fires.) 4117 speechsynthesisutterance.onpause api, experimental, property, reference, speechsynthesisutterance, web speech api, onpause, speech, synthesis the onpause property of the speechsynthesisutterance interface represents an event handler that will run when the utterance is paused part way through (when the pause event fires.) 4118 speechsynthesisutterance.onresume api, experimental, property, reference, speechsynthesisutterance, web speech api, onresume, speech, synthesis the onresume property of the speechsynthesisutterance interface represents an event handler that will run when a paused utterance is resumed (when the resume event fires.) 4119 speechsynthesisutterance.onstart api, experimental, property, reference, speechsynthesi...
RDF in Mozilla FAQ - Archive of obsolete content
ArchiveWeb StandardsRDF in Mozilla FAQ
the following code illustrates its usage: // this is the object that will observe the rdf/xml load's progress var observer = { onbeginload: function(asink) {}, oninterrupt: function(asink) {}, onresume: function(asink) {}, onendload: function(asink) { asink.removexmlsinkobserver(this); alert("done!"); }, onerror: function(asink, astatus, aerrormsg) { alert("error!
MediaRecorder.onpause - Web APIs
WebAPIMediaRecorderonpause
pause.onclick = function() { if(mediarecorder.state === "recording") { mediarecorder.pause(); // recording paused } else if(mediarecorder.state === "paused") { mediarecorder.resume(); // resume recording } } mediarecorder.onpause = function() { // do something in response to // recording being paused } mediarecorder.onresume = function() { // do something in response to // recording being resumed } ...
MediaRecorder - Web APIs
WebAPIMediaRecorder
mediarecorder.onresume an eventhandler called to handle the resume event, which occurs when media recording resumes after being paused.
SpeechSynthesisUtterance: resume event - Web APIs
WebAPISpeechSynthesisUtteranceresume event
bubbles no cancelable no interface speechsynthesisevent event handler property onresume examples you can use the resume event in an addeventlistener method: utterthis.addeventlistener('resume', function(event) { console.log('speech resumed after ' + event.elapsedtime + ' milliseconds.'); }); or use the onresume event handler property: utterthis.onresume = function(event) { console.log('speech resumed after ' + event.elapsedtime + ' milliseconds.'); } specifications specification status comment web speech apithe definition of 'speech synthesis utterance events' in that specification.
SpeechSynthesisUtterance - Web APIs
WebAPISpeechSynthesisUtterance
also available via the onresume property.