Click to See Complete Forum and Search --> : window open


drewex
12-02-2003, 06:23 PM
Hi all

I need to open my default screen in channelmode (something like fullscreen ...) after checking the login information in the login screen. Now i can do this

window.open ("default.aspx","newwindow","channelmode");
but the problem is this will open in new window. I have tried this
window.name="myself"
window.open ("default.aspx","myself","channelmode");
i openned it but didnt open in channel mode
is there a way to go to then default.aspx screen in channelmode with out opening?

Or is there a way to chance the mode of the screen in like sending f11 keypress to IE.

batfink
12-03-2003, 05:37 PM
No you cannot change many things in a window once it is open.

A workaround is to open a new one with the features you want and close the window you called it from.

<html>
<body>
<SCRIPT LANGUAGE="JavaScript" type=">
myWindow = window.open("default.aspx", "newwindow", 'fullscreen');
self.opener=null;
self.close();
</script>
</body>
</html>

drewex
12-03-2003, 05:41 PM
I now the code you give and it opens popup and popup-blockers can see the at least google toolbar can. I need to say that its not a popup. to the sistem so this doesnt do. Thanks anyway

batfink
12-03-2003, 05:56 PM
Nothing you can do then.

drewex
12-03-2003, 05:58 PM
well thanks anyway if there is anyone that know to do this can you help