Flash 365
Interactivity
Flash
Web Design in a Nutshell, eMatter Edition
The
The
browsers that do not recognize the
Browsers that do understand the
this reason, it is not appropriate to include directions specific to the Flash player
(or any plug-in) in the
users who view the Web with extremely outdated browsers.
The
<EMBED>...</EMBED>
<NOEMBED><IMG SRC="image.gif" width=300 height=150></NOEMBED>
Putting it together for all browsers
To make your Flash content available to the maximum number of users, it is
recommended that you use both the
Do not use quotation marks within the <embed>tag when it is
placed within an<object>tag. The quotation marks will cause the
<object> tag to choke.
The following sample code places an anti-aliased animation on the page that plays
and loops automatically:
<OBJECT CLASSID="clsid:D27CDB6E=AE6D-11cf-98B8-444553540000"
CODEBASE="http://active.macromedia.com/flash2/cab5/swflash.
cab" width=300 height=145 NAME="animation">
<PARAM NAME="MOVIE" value="animation.swf">
<PARAM NAME="PLAY" value="true">
<PARAM NAME="LOOP" value="true">
<PARAM NAME="QUALITY" value="autohigh">
<EMBED SRC=animation.swf WIDTH=300 HEIGHT=145
PLUGINSPAGE=http://www.macromedia.com/shockwave/download/
index.cgi?P1_Prod_Version=ShockwaveFlash NAME=animation
PLAY=true LOOP=true QUALITY=autohigh>
</EMBED>
<NOEMBED>This content requires a plug-in compatible browser.
</NOEMBED>
</OBJECT>