Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
My problem is I can't launch JavaScript macros.
function alert()
{
alert("Hello, QlikView");
}
But it doesn't work.
Could anybody help me? Thanks in advance.
The problem is the alert instruction.
The code is execute but the alert prompt no.
Solution (javascript):
function test(){
var x=new ActiveXObject("WScript.Shell");
x.popup('Antonio is The Best');
}
Create a button and Run Macro. name: test (don't put test() )