hi,
My flash site is nearly complete
One thing though, its been a while and I cant seem to find any script that works.
Iād like the obligatory āclick here to launch siteā button and the flash movie to open in the middle of the page with no borders, status bar or stuff like that.
All the script Iāve found doesnāt seem to want to work.
thanks.
this is what I have:
<SCRIPT LANGUAGE="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=760,height=504,left = 260,top = 228');");
}
// End -->
</script>
but I still get the toolbars etc even if the toolbar=0 is changed to toolbar=no
and this is my image code:
<A HREF="javascript:popUp('main.swf')"><img src="msplogo.gif" width="106" height="57" border="0"></a
