Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys
This a little off of place maybe but I want to know if you can configure Qlikview to play a sound when a reload completes. I'm working in a server with RDP and the reloadas take forever (10 min to 2 hours) so I want to go to my pc desktop and see other things while the reload is complete. A way it will be with PowerShell but I don't want to create scripts for common day use reloads
Thanks in adance
What about using the Alert Wizard set an Alert Email to yourself On Post Reload ?
I haven't work with alerts, I'll search about them. In the server it doesn't work because it has no internet access but in other scenarios is suitable. Maybe an alert and a macro will do the trick to play the sound
// That Element must exists on page
<audio id="sound" src="audio/RoolingStones.wav" preload="auto"></audio>
On Edit Script (Javascript):
function play_single_sound() {
document.getElementById('sound').play();
}
Hi Antonio, great to see that functionality on Qlikview, I'll look more onto JavaScript programming with qlikview but how do you integrate that JS code in the event of reload?
The unique problem is put <audio> tag on HTML <body>.
You can find samples here. Find by innerHTML.
See my sample on Extensions...
And an OnPostReload trigger to run a macro like:
sub sound
ActiveDocument.PlaySound("C:\sound.wav")
end sub