Reply
Sun 25 Jul, 2004 07:32 pm
I have found out about this new HTML code eg. <IFRAME src="http://www.yahoo.com" height="300" width="400" frameborder="0" scrolling="yes"></IFRAME>
I want to put the IFRAME around a certain flash/java window, without having to show the website as well.
Is that possible?
Why not just make an html page which includes nothing but your flash or java, then put that page within an iframe?
You can embed remote flash directly into the page if you want, you don't need an IFrame to frame someone else's flash (which sounds like the goal).
Here is example code:
Code:<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=480 HEIGHT=400>
<PARAM NAME=movie VALUE="http://www.domain.com/directory/flashfile.swf">
<PARAM NAME=quality VALUE=high>
<embed src="http://www.domain.com/directory/flashfile.swf" WIDTH="480" HEIGHT="400" quality="high" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</OBJECT>