Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MAC: Problem opening new window and writing HTML to it

Status
Not open for further replies.

radmoose

Programmer
Nov 24, 2000
1
US
I am opening up a new window and writing the HTML code for the new window. This is successful on Windows Platforms. The code write the HTML behind a FLASH file.

On the Mac platform, it does not seem to execute the EMBED/OBJECT code until you open the window for the second time (basically putting the flash object in the window again and then the user has to scroll down).

Thank you for any suggestions or solutions.

radmoose

Code:
function JSCallWin {

	var RtWidth = 180;
	var RHeight = 180;
	var RBorder = 30;
	var RTitle = "Sample";
	var RFName = "180.swf";

	var iMyWidth;
	var iMyHeight;
	//gets top and left positions based on user's resolution so hint window is centered.
	iMyWidth = (window.screen.width/2) - ((RWidth/2) + RBorder);
	iMyHeight = (window.screen.height/2) - ((RHeight/2) + RBorder);
	var RWindow = window.open("","Sample_RWindow","toolbar=no,menubar=no,location=no,status=no,height=" + (RHeight+RBorder) + ",width=" + (RWidth+RBorder) + ",resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no");
	RWindow.document.write('<HTML>');
	RWindow.document.write('<HEAD>');
	RWindow.document.write('<TITLE>' + RTitle + '</TITLE>');
	RWindow.document.write('</HEAD>');
	RWindow.document.write('<BODY BGCOLOR=&quot;#FFFFFF&quot; TEXT=&quot;#000000&quot; LINK=&quot;#000000&quot; VLINK=&quot;#000000&quot;>');
	RWindow.document.write('<font face=&quot;Verdana, Arial&quot;>');
	RWindow.document.write('<CENTER>');
	RWindow.document.write('<TABLE width=&quot;' + RWidth + '&quot; height=&quot;' + RHeight + '&quot; align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>');
	RWindow.document.write('<TR>');
	RWindow.document.write('<TD align=&quot;center&quot;>');
	RWindow.document.write('<OBJECT CLASSID=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;  WIDTH=&quot;' + RWidth + '&quot; HEIGHT=&quot;' + RHeight + '&quot; CODEBASE=&quot;[URL unfurl="true"]http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0&quot;>');[/URL]
	RWindow.document.write('<PARAM NAME=&quot;MOVIE&quot; VALUE=&quot;' + RFName + '&quot;>');
	RWindow.document.write('<PARAM NAME=&quot;PLAY&quot; VALUE=&quot;true&quot;>');
	RWindow.document.write('<PARAM NAME=&quot;LOOP&quot; VALUE=&quot;true&quot;>');
	RWindow.document.write('<PARAM NAME=&quot;QUALITY&quot; VALUE=&quot;high&quot;>');
	RWindow.document.write('<PARAM NAME=&quot;SCALE&quot; VALUE=&quot;showall&quot;>');
	RWindow.document.write('<PARAM NAME=&quot;MENU&quot; VALUE=&quot;false&quot;>');
	RWindow.document.write('<EMBED SRC=&quot;' + RFName + '&quot; WIDTH=&quot;' + RWidth + '&quot; HEIGHT=&quot;' + RHeight + '&quot; PLAY=&quot;true&quot; LOOP=&quot;true&quot; QUALITY=&quot;high&quot; SCALE=&quot;showall&quot; MENU=&quot;false&quot; PLUGINSPAGE=&quot;[URL unfurl="true"]http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash&quot;>');[/URL]
	RWindow.document.write('</EMBED>');
	RWindow.document.write('</OBJECT>');
	RWindow.document.write('</TD>');
	RWindow.document.write('</TR>');
	RWindow.document.write('<TR>');
	RWindow.document.write('<TD align=&quot;center&quot;>');
	RWindow.document.write('<A HREF=&quot;javascript:window.close()&quot; style=&quot;font-size: 10&quot;>Close Window</A>
	RWindow.document.write('</TD>');
	RWindow.document.write('</TR>');
	RWindow.document.write('</TABLE>');
	RWindow.document.write('</CENTER>');
	RWindow.document.write('</FONT>');
	RWindow.document.write('</BODY>');
	RWindow.document.write('</HTML>');
	RWindow.focus();
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top