Fehler: uncaught exception: [Exception... "Component returned failure code: 0x80004005 ...
Ich möchte einfach mit Javascript (siehe hier):
<script>
var mingames = new Array();
mingames[1] = "http://grieversoftware.gr.ohost.de/fraggit/minigames/flush.php";
mingames[2] = "http://grieversoftware.gr.ohost.de/fraggit/minigames/mathlord.php";
function starteSpiel(a) {
var l = (screen.width / 2) - 200;
var t = (screen.height / 2) - 150;
var f = window.open(mingames[a],"Spiel","top=" + t + ",left=" + l + ",width=400,height=300");
}
</script>
<table width=100% border=0 height=100%>
<tr>
<td align=center valign=middle>
<a href="javascript:starteSpiel(1)">Flush</a>
<a href="javascript:starteSpiel(2)">Math-Lord</a>
</td>
</tr>
</table>
(die Links funktionieren wenn man sie normal aufruft)
Nun bekomm ich aber vom Firefox wegen diesem Fenster folgenden Fehler aus der Fehlerconsole geschmissen:
Fehler: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIStringBundle.GetStringFromName]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: chrome://vrs/content/vrsOverlay.js :: <TOP_LEVEL> :: line 55" data: no]
Wie kann ich das korrigieren?
Bei dem anderen funktioniert es (Flush) ... bei diesem hier dann nicht (Mathlord) ... Warum?
MFG
Griever