Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | Re: FLASH: pop-up window positioning question! |
From: | Quack the Duck |
Date: | Mon, 3 Jan 2000 11:12:37 GMT |
This code will center your window widht and height wise.
<SCRIPT>
var v=parseInt(navigator.appVersion);
isNetscape=navigator.appName.indexOf('Netscape')>=0;
isExplorer=navigator.appName.indexOf('Explorer')>=0;
if(v>=3) self.focus();
function popupWindow(goLocation) {
ww=760; wh=500;
positionCode='';
if(v>=4) {
sw = screen.width; sh = screen.height;
wbx = Math.round((sw-ww)/2); wby = Math.round((sh-wh)/2);
if(isExplorer) positionCode='left='+wbx+',top='+wby+',';
if(isNetscape) positionCode='screenX='+wbx+',screenY='+wby+',';
}
newWindow=window.open(goLocation,'LGpopup',
'width='+ww+',height='+wh+','+
positionCode+
'toolbar=0,'+
'scrollbars=1,'+
'resizable=0');
if(isNetscape && v>=3) newWindow.focus();
}
</SCRIPT>
Put the following on the page you want the link on:
<a href="nameOfCurrnetPage.html"
onClick="popupWindow('name of file to open.html'); return false;">
FLASH VERSION</a>
----Original Message Follows----
From: "artistiekem @ work" <thelinkzw3 [dot] to>
Reply-To: flasherchinwag [dot] com
To: <flasherchinwag [dot] com>
Subject: FLASH: pop-up window positioning question!
Date: Mon, 3 Jan 2000 23:45:26 +0100
hello ya'll,
I know how to bring up a popup window from within Flash! But my question is:
How can I position this popup window in i.e. the middle of the user's
screen?
Gert van Duinen
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
RE: FLASH: pop-up window positioning que, 711114
FLASH: Croteau: How 2 pass var bet MC's, Suraj Prabhu
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]