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. |
This event occurs when the ready state changes.
Compatibility:Windows Media Player, ActiveMovie
Syntax
<SCRIPT FOR="MediaPlayer" EVENT="ReadyStateChange( lReadyState)" LANGUAGE="JScript"> //insert script commands// </SCRIPT> |
Parameters
- lReadyState
-
Longvalue indicating the current value of the ReadyState property, after it changes.
Remarks
The following are possible values for the lReadyStateparameter.
Value | Visual Basic constant | Description |
---|---|---|
|
mpReadyStateUninitialized |
The FileNameproperty has not been initialized. |
|
MpReadyStateLoading |
The Windows Media Player control is asynchronously loading a file. |
|
MpReadyStateInteractive |
The Windows Media Player control loaded a file, and downloaded enough data to play the file, but has not yet received all data. |
|
MpReadyStateComplete |
All data has been downloaded. |
After calling the Openmethod, applications should check the ready state before attempting to call the Playmethod on the newly opened file.
Applications should call the Playmethod only if the lReadyStateparameter equals 3 ( mpReadyStateInteractive) or 4 ( mpReadyStateComplete).
ActiveMovie compatibility mode is only supported through Windows CE .NET 4.1.
Requirements
Windows Embedded CE | Windows CE 3.0 and later |