I have also installed the ms debugger but I have to uninstall it. The reason:
In an application we have integrated the following javascript-code to resize
the notes viewapplet.
function waitForViewApplet() {
s_maxWaitSecs --;
if ( s_maxWaitSecs<0 ) {
window.clearInterval(s_waitVA);
} else if ( document.applets.view.isActive() ) {
var v = document.applets.view;
window.clearInterval(s_waitVA);
v.reshape (0, 0, v.offsetWidth, v.offsetHeight);
}
}
When I activate the script debugger, I always get an errormsg for the line
document.applets.view.isActiv()
I think the reason for that is, that we access directly to the applet and at
this point the script debugger can not handle this. So we get an error message.
Another effect was that the view was not displayed after debugging !
Because this was critical I have uninstalled the debugger.
I have also installed the ms debugger but I have to uninstall it. The reason: In an application we have integrated the following javascript-code to resize the notes viewapplet. function waitForViewApplet() { s_maxWaitSecs --; if ( s_maxWaitSecs<0 ) { window.clearInterval(s_waitVA); } else if ( document.applets.view.isActive() ) { var v = document.applets.view; window.clearInterval(s_waitVA); v.reshape (0, 0, v.offsetWidth, v.offsetHeight); } }
When I activate the script debugger, I always get an errormsg for the line document.applets.view.isActiv()
I think the reason for that is, that we access directly to the applet and at this point the script debugger can not handle this. So we get an error message. Another effect was that the view was not displayed after debugging ! Because this was critical I have uninstalled the debugger.
If somebody fixed this let me know.
Greetings from Germany
Christian