Gotcha, I had failed to look at the link you posted.
There are a couple of ways to go, it looks like you want the SWF to load up
into a popup when the user first enters that page? Yes? If so, then you can
add some HTML to the opening page to make this all happen. You can also
make it happen with a click of a button, or from within an SWF if you have
the FLA and can edit it with Flash.
First, create a function within your HTML page (or in a seperate JS file if
you prefer) The function might look like this:
function flashWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
//var mypage = '
http://www.YOURDOMAIN.com/Path to Flash File.swf';
winprops =
'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
The second two lines will center the popup in any size screen resolution, so
it will always be centered, regardless of the users screen size or res.
Note that your specific information goes on line FOUR. If you get it wrong,
it will not work, and remember, everything after .com/ IS case
sensitive.
Next, to make the pop up happen automatically on page load, as to the <BODY>
tag something like this:
<BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0
ONLOAD="flashWindow(this.href,'MyFlashFile','800','600','yes','no','resizable=no','toolbar=no','location=no');return
false;">
in this example the 800 and the 600 are the sizes you have to set according
to how you want it. The "resizable=no" is what keeps the user from resizing
the window on you!
HOPE THAT HELPS!!
<><
--
Regards,
--Vern
===========================
onClipEvent(doSomethingStupid){
setProperty("Face", color, #FF0000);
_root.audio = "uh oh!";
}