Dreamweaver Extensions

Working without Dreamweaver

You can work with Easy FLV Player without Adobe Dreamweaver. To do this, for example, take as a basis our example from the package. From this package you’ll need just SWF and XML files. All parameters and settings are situated in the configuration file config.xml, which you can edit with the help of any software. The path to config.xml you can find in parameters of Flash Object: <param name="flashvars" value="configSource=config.xml&amp;videoFile=video/ice_age.flv" /> in HTML code.

The following example shows the simple HTML code of the Flash Object:

<object id="Easy_Player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="480" height="270">
<param name="movie" value="EasyPlayer.swf" />
<param name="allowFullScreen" value="true" />
<param name="quality" value="high" />
<param name="flashvars" value="configSource=config.xml&amp;videoFile=video/ice_age.flv" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="swfversion" value="9.0.45.0" /> </object>

Also in the list of parameters you need to specify the link to video file, it should be done in line with config.xml, on-default it is <param name="flashvars" value="configSource=config.xml/> so you need add such record: &amp;videoFile=video/ice_age.flv

Line with specified video file looks: <param name="flashvars" value="configSource=config.xml&amp;videoFile=video/ice_age.flv" /> where video/ice_age.flv is a relative link to your video file.

You can adjust all available component parameters by editing the attributes of the tag <config> in the config.xml file. The main difference during the work with Adobe Dreamweaver is that during the setting of parameters you use friendly user interface (FlashDevelopment24 Wizard). And also Dreamweaver automatically inserts necessary HTML code in the page and creates necessary files in the mentioned folder. All these actions you can do independently without any help and without Dreamweaver.

Also, as a variant, you can download Dreamweaver trial version, create and adjust the component. In the future, to update the gallery you needn’t  Dreamweaver.

Additional information on adjustment and working with the component read other Help sections.