Microsoft Windows CE 3.0  

REPEAT

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 the number of times the Microsoft Windows Media Player control repeats one or more ENTRYor ENTRYREFelements.

<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

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 COUNTparameter 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>