View Single Post
  #1  
Old August 29th 06, 07:51 AM posted to microsoft.public.outlook.program_forms
Sarbashish
external usenet poster
 
Posts: 1
Default Handling Flash files in Microsoft Outlook

I need to send flash files in HTML format as an email signature in outlook.
Now if the security is high in the target audience's computer then I need to
display the animated gif image.

I know Microsoft has come up with the security feature which does not allow
to send and read emails which has an object tag.

I have written the following code. It works great in the IE browser but not
on the email client.

Here goes the code....

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
head
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /
titleFlash Embedded/title
/head
body bgcolor="#ffffff"
object
data="http://www.izmocars.com/izmomailservice/newcars/data/volkswagen/golf_gl03.swf?did=ICIM2004BOBNW"
type="application/x-shockwave-flash" width="534" height="270" VIEWASTEXT
param name=movie
value="http://www.izmocars.com/izmomailservice/newcars/data/volkswagen/golf_gl03.swf?did=ICIM2004BOBNW"
param name="menu" value="false" /
param name="wmode" value="transparent" /
param name="quality" value="best" /
param name="flashVersion" value="9"/
img alt= "alternative image"
src="http://images.automotive.com/stock/300/VOLKSWAGEN/PASSAT/2004/4SA.JPG" /
/object
/body
/html
Ads