Retrieves a Boolean value that indicates whether the element has a playList collection.
Syntax
HTML | N/A |
---|
Scripting | [ bMedia = ] object.hasPlayList |
---|
Possible Values
bMedia | Boolean that
receives one of the following values.true | The element has a playList collection. | false | The element does not have a playList collection. |
|
The property is read-only.
The property has no default value.
Example
The following brief code sample uses an alert message to show the value of the hasPlayList property.
<HTML XMLNS:t="urn:schemas-microsoft-com:time">
<HEAD>
<TITLE>hasPlayList Property</TITLE>
<?IMPORT namespace="t" implementation="#default#time2">
<STYLE>
.time{ behavior: url(#default#time2);}
</STYLE>
<SCRIPT>
function doFunction(){
alert('hasPlayList: ' + m1.hasPlayList);
}
</SCRIPT>
</HEAD>
<BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="FIXED" BGCOLOR="#FFFFFF"
LINK="#000000" VLINK="#808080" ALINK="#000000">
<t:media id="m1" begin="0" src="../../common/samples/author/behaviors/media/shuttle3.wmv"
onmediacomplete="doFunction();" fill="remove"/>
</BODY>
</HTML>
This feature requires Microsoft?Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.

Applies To
See Also
Introduction to HTML+TIME