Important: |
---|
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. |
Defines a custom parameter associated with a clip or show.
<PARAM NAME="parameter name" VALUE="parameter value" />
Parameters
Child/Parent Information
Remarks
This element allows users to place additional information about each clip inside the ENTRY element that contains it. The GetMediaParametermethod retrieves the value of the VALUE attribute, given the name of the parameter and an index number for the entry.
A parameter can also be associated with the show rather than an individual clip, by placing this element directly after the ASX tag. These items are referenced by their names and an index value of zero.
Example
<ASX VERSION="3.0"> <TITLE>Example Media Player Show</TITLE> <PARAM NAME="Director" VALUE="Jane D." /> <ENTRY> <TITLE>Example Clip</TITLE> <REF HREF="http://samples.microsoft.com/media.asf" /> <PARAM NAME="Location" VALUE="North America" /> <PARAM NAME="Release Date" VALUE="March 1998" /> </ENTRY> <ENTRY> <TITLE>Another Clip</TITLE> <REF HREF="http://samples.microsoft.com/more_media.asf" /> <PARAM NAME="Location" VALUE="Japan"> <PARAM NAME="Release Date" VALUE="December 1996" /> </ENTRY> </ASX>