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. |
A version of this page is also available for
4/8/2010
This element defines a custom parameter associated with a clip or show.
Syntax
<PARAM NAME="parameter name" VALUE="parameter value" /> |
Parameters
- NAME
-
Name used to access the parameter value.
The name can be any valid string.
- VALUE
-
Value associated with this parameter.
It can be either a numeric or string value.
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
Copy Code | |
---|---|
<ASX VERSION="3.0"> <TITLE>Example Media Player Show</TITLE> <PARAM NAME="Director" VALUE="Jane D." /> <ENTRY> <TITLE>Example Clip</TITLE> <REF HREF="http://example.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://example.microsoft.com/more_media.asf" /> <PARAM NAME="Location" VALUE="Japan"> <PARAM NAME="Release Date" VALUE="December 1996" /> </ENTRY> </ASX> |