Hi Everybody.
I want that if I open a link from inside an SWF file created with Swishmak that this page changes to another URL.
But I want that when the page changes to the other URL that it resizes to full window mode.
Can I use this code here below placed in the HTML file that I want to open?
If not could someone please send me the right code for that.
Thanks in advance.
Cheng
<script language="JavaScript1.2">
<!--
/***********************************************
* Auto Maximize Window Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for this script and 100's more.
***********************************************/
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->
</script>



Reply With Quote

Bookmarks