19 February 2008
You should have a basic understanding of editing website templates in Dreamweaver CS3.
Beginning
The Adobe Flash video component in Adobe Dreamweaver CS3 helps you easily insert and display video files in your websites. It's great for Dreamweaver users who are unfamiliar with Flash because you can insert Flash video (FLV) files on your web pages without actually using the Flash authoring tool. The Flash video component enables you to select from several different playback controllers that visitors use to control the FLV file playing on your web page. You can choose also between two different options for delivering your video: progressive download or streaming.
This article shows you how to use Dreamweaver CS3 to insert and display FLV files on your site. The Flash video component uses a wizard interface that enables you to choose display and delivery options and even preview the player's design (skin) before you insert it on a web page. Despite the automated way that code is inserted onto a web page, you do have control over the end result. Using the Flash video component isn't the only way to display FLV files on the web, but it's fast and easy.
In order to follow the steps in this tutorial, you must install Dreamweaver CS3 and download the farm_cs3.zip sample file from this tutorial's introductory page.
Extract the contents of the farm_cs3.zip sample file you downloaded to a new folder on your desktop called farm. The ZIP file contains an entire Dreamweaver template website, including Flash video (FLV) files. You will work with the files in the farmsite folder during this tutorial. You can compare your work to the finished files in the finished folder.
The website template that you use for the following exercises has a distinct farm theme (see the sample site). The farm site consists of nine main folders, seven templates, a few dozen static HTML pages, and a Cascading Style Sheet (see Figure 1). The purpose of the website is to create a gallery of images and videos for six common farm animals. Each animal has its own subfolder where you store HTML pages specific to that animal. For example, you store pages that display images or videos that relate to chickens in the chickens folder. You use the last three folders (called images, videos, and Templates) to organize the images, videos, and templates for the farm site.
The site has a basic three-column design, where the left column contains the main site navigation and the middle column displays content (text, images, and video). You nest templates in the right column to display thumbnail images for both videos and static images of animals (see Figure 2).
Using nested templates enables you to add new pages easily to the site and automatically have the subnavigation added for you. Also, making changes to the animal-specific templates causes the changes to cascade to any file using that template. So if you need to modify the subnavigation within the chicken template, all files based on that template are updated automatically.
In this exercise, you insert an FLV file with a controller into a supplied web page in several easy steps.
You have two options when you insert and display an FLV file in your HTML documents using the Flash video component:
Note: The FLV video included with the article source files uses the Sorenson Spark codec and can be viewed with Flash Player 6 r65 or later.
Note: For more information on using video on the web, see the Flash video learning guide.
Depending on which video type you select in the pop-up menu, the following steps will vary slightly. This tutorial assumes you've chosen the Progressive Download Video option to display your video files:
[insert video here].
Note: For more information on this issue, please see the following TechNote: Cannot insert Flash Video in template child pages.
Based on the settings that you chose for this exercise, Dreamweaver inserts the following code into your web page (the highlighted code is explained next):
<script type="text/javascript">
AC_FL_RunContent(
'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0',
'width','320','height','240','id','FLVPlayer','src',
'FLVPlayer_Progressive','flashvars',
'&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=../videos/chicken01&autoPlay=true&autoRewind=true',
'quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage',
'/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','FLVPlayer_Progressive'
); //end AC code
</script>
<noscript>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"
width="320" height="240" id="FLVPlayer">
<param name="movie" value="FLVPlayer_Progressive.swf" />
<param name="salign" value="lt" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=../videos/chicken01&autoPlay=true&autoRewind=true"
/>
<embed src="FLVPlayer_Progressive.swf"
flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=../videos/chicken01&autoPlay=true&autoRewind=true"
quality="high" scale="noscale" width="320"
height="240" name="FLVPlayer" salign="LT"
type="application/x-shockwave-flash"
pluginspage="/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
/>
</object>
</noscript>
What does this all mean? The parameters you specify in the Insert Flash Video wizard are inserted into this HTML snippet, which pass information to the SWF file using FlashVars (see the note below). The skin, called Clear_Skin_3, is copied to the same folder as the current HTML file, although it omits the file extension (.swf) in the HTML code. The second parameter, streamName, points to the FLV file you defined in the URL text box. It is a relative path and again omits the FLV file extension (.flv).
Note: FlashVars is a mechanism for passing variables to the SWF file through name-value pairs in the HTML. The name-value pairs end up as variables on the root timeline of the SWF file. This is a great way to import assets paths and simple parameters into your SWF file.
The next two parameters are Boolean (true/false) values, which are based on your selections in the wizard. If you want to modify the skin or path to the FLV file, then you can modify these values directly using Code view in Dreamweaver. You might need to edit the width and height parameters manually in both the param and embed tags. These values represent the width and height of the FLV document, respectively. However, if you use certain default or custom skins, you might need to modify these values if your skin contains a border and is larger than the dimensions of the FLV file.
Due to cross-browser issues, you need to define the FlashVars values in both a param tag as well as the embed tag so that the code works with Microsoft Internet Explorer–based and Netscape-based browsers
One last thing to notice is the JavaScript code surrounding the object and embed tags. This is new to displaying Flash SWF files in a browser. Dreamweaver (and Flash) copy a JavaScript file named AC_RunActiveContent.js to a relative path in relation to the HTML page containing the SWF file. The JavaScript file and the additional code seen above allow users to interact with the SWF file on the web page without having to click first to activate it.
You may see a prompt at various points stating that Dreamweaver is creating the dependant JavaScript file.
If you look at the chickens folder, you can see that several files are automatically placed there by Dreamweaver (see Figure 6). The Scripts folder is created dynamically containing the JavaScript file described above. The Clear_Skin_3.swf and FLVPlayer_Progressive.swf are exported based on your settings in Dreamweaver. You may notice multiple skin files in the folder if you experimented with different skin settings. You can delete the unused skin files in the end.
If you look at the files and folders in Figure 6, you can see that Dreamweaver automatically added the Scripts folder to the farmsite directory and two Flash files in the chickens directory. The Scripts folder contains the JavaScript file just described. The Clear_Skin_3.swf and FLVPlayer_Progressive.swf are exported based on your settings in Dreamweaver. You may notice multiple skin files in the folder if you experimented with different skin settings. You can delete the unused skin files in the end.
Note: The actual SWF file you need to drive the Flash video component is a mere 10–12K, depending on whether you select the progressive download or streaming option. Using one of the default skins adds approximately another 4–11K, depending on the skin you choose.
This tutorial demonstrates how easy it is to add video to existing web pages using Dreamweaver and the Flash video component. With only a few clicks of the mouse, you can embed an FLV file using the default skins.
With a bit of extra work (and Flash CS3) you can also create a custom skin that matches your website. To find out how to customize playback controllers using Flash, check out the Dan Carr's article, Controlling Flash video with FLVPlayback programming.
With a bit of creativity, you can create much better skins and projects using the Flash video component.
No animals were harmed in the making of this article.

This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License
| 04/23/2012 | Auto-Save and Auto-Recovery |
|---|---|
| 04/23/2012 | Open hyperlinks in new window/tab/pop-up ? |
| 04/21/2012 | PNG transparencies glitched |
| 04/01/2010 | Workaround for JSFL shape selection bug? |
| 02/13/2012 | Randomize an array |
|---|---|
| 02/11/2012 | How to create a Facebook fan page with Flash |
| 02/08/2012 | Digital Clock |
| 01/18/2012 | Recording webcam video & audio in a flv file on local drive |