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.
Gets a Boolean value that indicates if the source of the media object is streamed.
Syntax
| JScript |
|---|
|
Property values
Type: Boolean
One of the values in the Property Values section.
Remarks
isStreamed was introduced in Microsoft Internet Explorer 6.
Examples
In the following example, the isStreamed property is used to check whether the source of the media object is streamed.
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/isStreamed.htm
...
<t:video id="mp2"
src="https://msdn.microsoft.com/workshop/samples/author/behaviors/media/shuttle3.wmv"/>
<P>
<B>Streaming content</B>:
<SPAN class="time" dur="0.1" repeatCount="indefinite"
onrepeat="innerText=mp2.isStreamed;"></SPAN>
</P>
...