Windows Media Player Control SDK Banner Art
*Contents *Index  *Topic Contents
*Previous Topic: ENDMARKER
*Next Topic: ENTRYREF

ENTRY Element

Defines a clip.

Syntax

<ENTRY
   CLIENTSKIP= "YES" | "NO"
   SKIPIFREF= "YES" | "NO"
>
</ENTRY>

Attributes

CLIENTSKIP
Value indicating whether the user can skip forward past the clip. Possible values include the following.
YESUser can skip forward past the clip.
NOUser cannot skip forward past the clip.
The default value is YES.
SKIPIFREF
Value indicating whether the Microsoft® Windows Media™ Player control should skip this clip when the ENTRY element is included in a second Advanced Stream Redirector (ASX) file through the use of an ENTRYREF element. Possible values include the following.
YESThe Windows Media Player will ignore this entry, if referenced through an ENTRYREF element.
NOThe Windows Media Player will not ignore this entry.
The default value is NO. See Remarks for more information.

Parent/Child Information

Parent elements ASX, EVENT, REPEAT
Child elements ABSTRACT, AUTHOR, BANNER, BASE, COPYRIGHT, DURATION, ENDMARKER, LOGO, MOREINFO, PARAM, PREVIEWDURATION, REF, STARTMARKER, STARTTIME, TITLE

Remarks

This element is the fundamental construct in an ASX file. The ENTRY element and its associated attributes define meta-information for a single, logical piece of content, called a clip. Child elements within the scope of an ENTRY element define media content for the Windows Media Player control to open (REF), information about the clip that the Windows Media Player will display as text (AUTHOR, COPYRIGHT, TITLE), and other settings related to the clip.

If the value of the CLIENTSKIP attribute is NO, the user cannot skip forward past the piece of content defined by the ENTRY element.

The SKIPIFREF attribute pertains only to ENTRY elements that are included in a second ASX file through the use of an ENTRYREF element. The ENTRYREF element references another ASX file for logical inclusion in the current file. If the value of the SKIPIFREF attribute for an ENTRY element from the referenced ASX file is YES, the Windows Media Player ignores this pulled-in entry, and moves on to the next ENTRY element, if any. The next ENTRY element can be the next entry in the original file, or the next entry in the ASX file referenced in the ENTRYREF element.

Example

<ASX VERSION="3.0">
   <TITLE>Example Windows Media Player Show</TITLE>
   
   <ENTRY>
      <TITLE>Example Clip</TITLE>
      <REF HREF="http://example.microsoft.com/media.asf" />
   </ENTRY>
   
   <ENTRY>
      <TITLE>Another Clip</TITLE>
      <REF HREF="http://example.microsoft.com/more_media.asf" />
   </ENTRY>
</ASX>

Top of Page Top of Page
© 1999 Microsoft and/or its suppliers. All rights reserved. Terms of Use.