Ich habe das folgende Skript in meiner Xul-Anwendung:
MyClass = function() {
this.go = function() {
try {
var scanWindow = window.open('chrome://test/content/scanWindow.xul','Scan','chrome, width=850, height=150, centerscreen');
dump("scanWindow = " + scanWindow); // console output in Xul
} catch(err) {
dump("ERROR: " + err); // console output in Xul
}
}
}
Wenn ich diese Methode aufrufe, wird
scanWindow = undefiniert
Haben Sie einen Tipp, was die Ursache dafür sein könnte?