Forum Discussion
Ryan_Moran
12 years agoValued Contributor
This is actually possible to do...
JScript example:
JScript example:
function main(){
Log.Error('I won\'t log anything I promise :)!');
}
function dosomething(g){
wshell = new ActiveXObject('WScript.Shell');
wshell.popup(g.str);
/* of course you would need to have handling to call back the function being
performed but hopefully you get the point from this basic example */
}
function onlogerror(s,g){
g.Locked = true;
dosomething(g);
}