Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: RE: FLASH: pop-up window positioning question!
From: 711114
Date: Mon, 3 Jan 2000 21:53:23 GMT

Okee, I will work on this one!

very thanks for your time and knowledge!

Gert van Duinen
http://w3.to/thelinkz

-----Original Message-----
From: owneratchinwag [dot] com [owneratchinwag [dot] com]On">mailto:owneratchinwag [dot] com]On Behalf Of Quack the
Duck
Sent: dinsdag 4 januari 2000 4:01
To: flasheratchinwag [dot] com
Subject: Re: FLASH: pop-up window positioning question!


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" <thelinkzatw3 [dot] to>
Reply-To: flasheratchinwag [dot] com
To: <flasheratchinwag [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 helpatchinwag [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 helpatchinwag [dot] 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 helpatchinwag [dot] com


Replies
  Re: FLASH: pop-up window positioning que, Quack the Duck

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]