Click to See Complete Forum and Search --> : Re: one instance of a window


Microbyte
06-29-2004, 11:35 AM
i have a flash mp3 player and it is automatically started using body onload, but if the player is open an the page reloaded then the mp3 player window refreshes also, (in the middle of a song!!! tut tut tut) so i was wondering if any one knows of a script to check to see if the mp3 player window is open if it is then null but if not it fires up the mp3 player window.

i know one of u guys will come thru for me.

peace

Cheers, Rob

crh3675
06-29-2004, 11:44 AM
What is the script that opens the Flash window?

Microbyte
06-29-2004, 01:28 PM
it opens the html page for the flash page: just a simple one of


</SCRIPT>
<script language="javascript">
function openpopWindow(theURL,winName,features)
{
window.open(theURL,winName,features);
}
</script>


Any ideas?