Page 1 of 1
		
			
				Embedding Morph into a website
				
Posted: 
Mon Aug 16, 2010 10:44 amby Ryedale
				How can I embed a morph into a website?
Is there a code for it?  I mean an individual website not the ones you have nominated.
			 
			
		
			
				embedding in a website
				
Posted: 
Tue Aug 17, 2010 4:35 amby edwind
				HI Ryedale,
I used a saved morph to .swf file then used this code in my webpage to work with both Firefox and Internet Explorer....
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
	codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
	width="XXXXX" height="XXXXX" id="test">
	<param name="movie" value="Filename.swf" />
	<param name="quality" value="high" />
	<param name="play" value="true" />
	<param name="bgColor" value="#FFFFFF" />
	<param name="wmode" value="transparent" />
	<embed src="Filename.swf"
		width="XXXXX" height="XXXXX"
		quality="high"
		play="true"
		bgColor="#FFFFFF"
		wmode="transparent"
		type="application/x-shockwave-flash"
		pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
Set filename in 2 places and width and height in 2 places.
Doctype ......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
			 
			
		
			
				
				
Posted: 
Tue Aug 17, 2010 12:28 pmby Ark
				There is an option in the Timeline Options window to "Generate companion html file" which will create a *.html file with the html tags needed to load the SWF file you render.
This does not cover hosting or uploading the files, as that can be different for every provider used for hosting.
			 
			
		
			
				Embedding Morph on a website
				
Posted: 
Wed Aug 18, 2010 10:34 amby Ryedale
				Thanks Edwind - I wll try this out.  Looks as if it will work.
And thanks for the hint, Ark.