larsiman
08-08-2002, 09:16 AM
hey there.
I am using the following script for my website:
-->>> (please scroll down...there is the problem discribed...)
<head>
<script language="JavaScript">
n = (document.layers) ? true:false;
ie = (document.all) ? true:false;
function fenster ()
{
fens1="";
var hoehe;
var breite;
hoehe=parseInt(screen.availHeight);
breite=parseInt(screen.availWidth);
if (n) fens1=window.open("frames_net.htm","fens","width=breite,height=hoehe,resizable=Yes,");
if (ie) fens1=window.open("frames_ie.htm","fens","width=breite,height=hoehe,resizable=Yes,");
fens1.moveTo (0,0);
fens1.resizeTo (breite,hoehe);
}
</script>
</head>
And the starter in the BODY TAG.
Alright this starts by typing in the domain in the old window poping up a new window with screen max available height and width but no scrollbars !!!
Till now I never needed a scrollbar 'caused by one-side flash animations, but now I need even more space.
Things I tried already:
adding after "resizeable=yes" a ",scrolling=yes" (not working)
adding after "resizeable=yes" a ",scrollbars" (not working)
Any ideas ??? I know it might be a small step but I couldn't figure it out.
Thx for the help. Greetings from Germany.
Lars*
I am using the following script for my website:
-->>> (please scroll down...there is the problem discribed...)
<head>
<script language="JavaScript">
n = (document.layers) ? true:false;
ie = (document.all) ? true:false;
function fenster ()
{
fens1="";
var hoehe;
var breite;
hoehe=parseInt(screen.availHeight);
breite=parseInt(screen.availWidth);
if (n) fens1=window.open("frames_net.htm","fens","width=breite,height=hoehe,resizable=Yes,");
if (ie) fens1=window.open("frames_ie.htm","fens","width=breite,height=hoehe,resizable=Yes,");
fens1.moveTo (0,0);
fens1.resizeTo (breite,hoehe);
}
</script>
</head>
And the starter in the BODY TAG.
Alright this starts by typing in the domain in the old window poping up a new window with screen max available height and width but no scrollbars !!!
Till now I never needed a scrollbar 'caused by one-side flash animations, but now I need even more space.
Things I tried already:
adding after "resizeable=yes" a ",scrolling=yes" (not working)
adding after "resizeable=yes" a ",scrollbars" (not working)
Any ideas ??? I know it might be a small step but I couldn't figure it out.
Thx for the help. Greetings from Germany.
Lars*