This element defines a <param> tag with a name attribute which can be used to configure the mutlimedia object within EditLive! for XML. Users will be able to set the value of the parameter and the name and (user specified) value pair will be inserted as a <param> tag for the relevant <object> in the source in EditLive! for XML.
<editLive>
...
<mediaSettings>
...
<multimedia>
...
<types>
...
<type>
<param name="... />
</type>
...
</types>
</multimedia>
</mediaSettings>
...
</editLive>A unique name for the parameter. The value for the name attribute should be the same as the name attribute for the <param> tag to be inserted with the <object> tag into the source for EditLive! for XML.
This element enables <param> tags associated with the <object> tag to be inserted into the code in EditLive! for XML.
The following example demonstrates how to configure parameters of a multimedia type for use with EditLive! for XML. In this case the media type is a Windows Media Player streaming type with the .asx extension.
<editLive>
...
<mediaSettings>
...
<multimedia>
<types>
...
<type
name="Windows Media (Streaming)"
type="application/x-mplayer2"
extension="asx"
allowCustomParams="true"
urlParam="fileName"
>
<param name="animationAtStart" />
<param name="autoStart" />
<param name="clickToPlay" />
</type>
...
</types>
</multimedia>
</mediaSettings>
...
</editLive>Copyright 2001-2005 Ephox Corporation. All Rights Reserved.