| Embedding
Flash Movies
To display Flash
movies in your HTML page you will need to embed
the movie in the page. Dreamweaver makes the process
pretty simple. Here's all you need to do:
- Select INSERT/MEDIA/FLASH
from the menu bar.
- Navigate to your Flash file and
select it.
- Dreamweaver automatically places
an object tag in your document similar to this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash
/swflash.cab#version=6,0,29,0" width="550"
height="400">
<param name="movie" value="../flash/tutorials/movie_clip/movie_clip.swf">
<param name="quality" value="high">
<embed src="../flash/tutorials/movie_clip/movie_clip.swf"
quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="550"
height="400"></embed></object>
Dreamweaver uses the attributes
you selected in Flash when you published your Flash
FLA file. Such as movie quality, width, and height.
|