Hallo zusammen...
Ich habe folgendes Skript in eine HTML-Seite eingefügt, damit sich von dort ein Fenster ohne Menü-Elemente automatisch beim Start der HTML-Seite öffnet:
===========================
<script language="JavaScript">
function owindow(url, w, h){
var options = "width=" + w + ",height=" + h + ",";
options += "resizable=no,scrollbars=no,status=no,";
options += "menubar=no,toolbar=no,location=no,directories=no";
var newWin2 = window.open(url, 'newWin2', options);
newWin2.focus();
}
owindow('Games-Data/titles.htm', 800, 600);
</script>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Learning Games</title>
</head>
===========================
Jetzt meine Frage: Wie kann ich vorgeben, dass das Fenster an einer bestimmten Stelle auftaucht? Denn wenn sich bei mir das Fenster öffnet, ist manchmal ein Teil außerhalb des sichtbaren Bildschirmbereiches ...
Herzlichen Gruß,
Lotexx.
Ich habe folgendes Skript in eine HTML-Seite eingefügt, damit sich von dort ein Fenster ohne Menü-Elemente automatisch beim Start der HTML-Seite öffnet:
===========================
<script language="JavaScript">
function owindow(url, w, h){
var options = "width=" + w + ",height=" + h + ",";
options += "resizable=no,scrollbars=no,status=no,";
options += "menubar=no,toolbar=no,location=no,directories=no";
var newWin2 = window.open(url, 'newWin2', options);
newWin2.focus();
}
owindow('Games-Data/titles.htm', 800, 600);
</script>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Learning Games</title>
</head>
===========================
Jetzt meine Frage: Wie kann ich vorgeben, dass das Fenster an einer bestimmten Stelle auftaucht? Denn wenn sich bei mir das Fenster öffnet, ist manchmal ein Teil außerhalb des sichtbaren Bildschirmbereiches ...
Herzlichen Gruß,
Lotexx.