monster: Größe der index.html

Beitrag lesen

hi,

danke für deine mühen,

habe ich gleich mal ausbrobiert, kann ich aber nicht nehmen da ich schon mit onload die weiterleitung geschaltet habe.

ich werde dir mal meinen quelltext mithin schreiben dann is es bestimmt leichter

index seiter

<HTML>
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<TITLE>index</TITLE>

<SCRIPT LANGUAGE="JavaScript">

function playerwin(dateiname, mywidth, myheight){
 xpos=(screen.width-mywidth)/2;
 ypos=(screen.height-myheight)/3;
 eigenschaften='width='+mywidth+',height='+myheight+',top='+ypos+',left='+xpos;
 window.open(dateiname,'_blank',eigenschaften);
UND WENN ICH HIER _self HINSCHREIBE GEHTS GAR NICHTS MEHR
 }

</SCRIPT>

</HEAD>
<BODY scrolling="no" directories="no" toolbars="no" scrollbars="no" width="800" height=630" bgcolor="efefdf" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="javascript:playerwin('xxxxx.html',800,630)">

</BODY>
</HTML>

folge seite

<HTML>
<HEAD>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<TITLE>xxxxxx</TITLE>

<SCRIPT LANGUAGE="JavaScript">

function playerwin(dateiname, mywidth, myheight){
 xpos=(screen.width-mywidth)/2;
 ypos=(screen.height-myheight)/3;
 eigenschaften='width='+mywidth+',height='+myheight+',top='+ypos+',left='+xpos;
 window.open(dateiname,'_blank',eigenschaften);
 }
</SCRIPT>

</HEAD>
<BODY bgcolor="efefdf" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align="left">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
 width="800" height="630" align="middle">
    <param name=movie value="mercure.swf">
    <param name=quality value=high>
    <param name=bgcolor value=efefdf>
    <embed src="xxxxx.swf" quality=high bgcolor=efefdf  width="800" height="630" align="middle"
 type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</object>
</div>
</BODY>
</HTML>

so nun haste vielleicht noch ne andere idee wie du mir helfen kannst oder du entdeckst vielleich auch ein denkfehler meinerseits.

danke schon mal

monster