Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
This topic documents a feature of HTML+TIME 2.0, which is obsolete as of Windows Internet Explorer 9.
Gets a Boolean value that indicates whether the element is an Introduction to HTML+TIME media element.
Syntax
HTML N/A Scripting [ bMedia = ] object.hasMedia
Possible Values
bMedia Boolean that receives one of the following values.
true- The element is an Introduction to HTML+TIME media element.
false- The element is not an Introduction to HTML+TIME media element.
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 hasMedia property.
<HTML XMLNS:t="urn:schemas-microsoft-com:time"> <HEAD> <TITLE>hasMedia Property</TITLE> <?IMPORT namespace="t" implementation="#default#time2"> <STYLE> .time{ behavior: url(#default#time2);} </STYLE> <SCRIPT> function doFunction(){ alert('hasMedia: ' + m1.hasMedia); } </SCRIPT> </HEAD> <BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="FIXED" BGCOLOR="#FFFFFF" LINK="#000000" VLINK="#808080" ALINK="#000000"> <t:media id="m1" begin="0" src="/workshop/samples/author/behaviors/media/shuttle3.wmv" onmediacomplete="doFunction();" fill="remove"/> </BODY> </HTML>
Applies To
t:ANIMATE, t:ANIMATECOLOR, t:ANIMATEMOTION, t:ANIMATION, t:AUDIO, t:IMG, t:MEDIA, t:SEQ, t:SET, time2, t:VIDEO
See Also