Settings and activity
15 results found
-
5 votes
Justin shared this idea ·
-
3 votes
An error occurred while saving the comment Justin supported this idea ·
-
8 votes
Justin shared this idea ·
-
87 votes
Justin supported this idea ·
-
8 votes
Justin supported this idea ·
-
3 votes
Justin supported this idea ·
-
88 votes
Justin supported this idea ·
-
22 votes
Justin supported this idea ·
-
2 votes
An error occurred while saving the comment Justin commented
Adding the Override Branches with open an closed would be great as well.
An error occurred while saving the comment Justin commented
This would be so helpful. I had to turn of 25 lines today and kept losing track of where I was.
Justin supported this idea ·
-
23 votes
Justin supported this idea ·
-
110 votes
Justin supported this idea ·
-
61 votes
Justin supported this idea ·
-
60 votes
Justin supported this idea ·
-
3 votes
Justin supported this idea ·
-
3 votes
An error occurred while saving the comment Justin commented
Add setting in RingCental app to auto clear app data cache on a schedule.
Many troubleshooting steps advised to clear the app data in ring central app. It would be great if this could be done on a schedule set by the admin or user.
Justin supported this idea ·
The issue is likely due to the Decibels (dB) / Amplitude of the ring tone file being to low. this can be fixed by replacing the current "ringtone.wav" file with one that has a higher Decibels (dB) / Amplitude. This may also be improved by using the following script:
<audio id="myAudio" src="ringtone.wav"></audio>
<button onclick="playLouder()">Play Louder</button>
<script>
function playLouder() {
const audio = document.getElementById('myAudio');
const ctx = new (window.AudioContext || window.webkitAudioContext)();
const source = ctx.createMediaElementSource(audio);
const gainNode = ctx.createGain();
// Set volume (gain value). Increase if needed
gainNode.gain.value = 2.0; // double the volume
source.connect(gainNode);
gainNode.connect(ctx.destination);
// Resume AudioContext if required (needed in some browsers)
if (ctx.state === 'suspended') {
ctx.resume().then(() => {
audio.play();
});
} else {
audio.play();
}
}
</script>