moinsen leute!
hab hier nen javascript,daß auf seitenaufruf eine vordefinierte seite aufmacht, die dann immer im vordergrund ist.
code:
<html>
<BODY onload="ontopwindow()">
<SCRIPT LANGUAGE="JavaScript">
var otwindow;
function ontopwindow()
{
otwindow=window.open ("","OnTop","width=468,height=68,screenX=0,screenY=0");
otwindow.document.open();
otwindow.document.bgColor="#ffffff";
otwindow.document.fgColor="#000000";
otwindow.document.write ("Nix da...Fenster bleibt OnTop");
stayontop()
}
function stayontop()
{
if (otwindow.closed==true)
fenster()
otwindow.focus()
setTimeout("stayontop()", 100);
}
</script>
</body>
</html>
so jetzt möchte ich aber aus flash ein popupfenster öffnen, dass immer on top (im vordergrund) ist.
hat jemand ne ahnung???
danke schon mal im voraus!
hab hier nen javascript,daß auf seitenaufruf eine vordefinierte seite aufmacht, die dann immer im vordergrund ist.
code:
<html>
<BODY onload="ontopwindow()">
<SCRIPT LANGUAGE="JavaScript">
var otwindow;
function ontopwindow()
{
otwindow=window.open ("","OnTop","width=468,height=68,screenX=0,screenY=0");
otwindow.document.open();
otwindow.document.bgColor="#ffffff";
otwindow.document.fgColor="#000000";
otwindow.document.write ("Nix da...Fenster bleibt OnTop");
stayontop()
}
function stayontop()
{
if (otwindow.closed==true)
fenster()
otwindow.focus()
setTimeout("stayontop()", 100);
}
</script>
</body>
</html>
so jetzt möchte ich aber aus flash ein popupfenster öffnen, dass immer on top (im vordergrund) ist.
hat jemand ne ahnung???
danke schon mal im voraus!