REPEAT

This element defines the number of times the Windows Media Player control repeats one or more ENTRY or ENTRYREF elements.

<REPEAT
  COUNT="integer"
>
</REPEAT>

Parameters

  • COUNT
    Integer representing the number of times the WMP control repeats the ENTRY and ENTRYREF elements within this element's scope.

Parent/Child Information

Hierarchy Allowed element
Parent elements ASX
Child elements ENTRY, ENTRYREF

Remarks

This element defines the number of times the WMP control repeats, or loops through, the clips defined by the ENTRY and ENTRYREF elements within this element's scope. Only the first REPEAT element in an Advanced Stream Redirector (ASX) file is valid; subsequent REPEAT elements are ignored.

If no COUNT parameter is defined, the content in the associated ENTRY and ENTRYREF elements repeats an infinite number of times. A value of zero causes the WMP control to ignore the REPEAT element and play the content once.

Example

<ASX VERSION="3.0">
   <ENTRY>
        <REF HREF="mms://example.microsoft.com/clip1.asf" />
<!-- This clip plays once. -->
   </ENTRY>

   <REPEAT COUNT="2">
      <ENTRY>
     <REF HREF="mms://example.microsoft.com/clip2.asf" />
     <REF HREF="mms://example.microsoft.com/clip3.asf" />
 <!-- These clips play twice. -->
      </ENTRY>
   </REPEAT>
</ASX>

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.