PLAYER Attribute | player Property
This topic documents a feature of HTML+TIME 2.0, which is obsolete as of Windows Internet Explorer 9.
Sets or gets the object used to render the media associated with this element.
Syntax
HTML <ELEMENT PLAYER = sID... > Scripting [ sID = ] object.player
Possible Values
sID String that specifies or receives one of the following values.
- Class ID
- The class identifier of the object used to render the element's media. The format is "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}" for registered Microsoft ActiveX controls. For example, use "{22d6f312-b0f6-11d0-94ab-0080c74c7e95}" for the Microsoft Windows Media Player control.
DMusic
- No longer supported. The Microsoft DirectMusic player.
DVD
- The digital video disc (DVD) movie player.
The property is read/write. The property has no default value.
Remarks
This property works only with media-playing objects that support HTML+TIME (Timed Interactive Multimedia Extensions). This property cannot be modified in script after the onload event fires on the document body.
As of Microsoft Internet Explorer 6, authors can use HTML+TIME with the mediaBar behavior to play timed content in the Media Bar. The Media Bar content proxy player is provided to ensure that the activeTime of an HTML+TIME timeline is coordinated with the activeTime that is used by the Media Bar player control. To coordinate media playing in the Media Bar with an HTML+TIME timeline playing in the Media Bar content area, specify the class identifier of the Media Bar content proxy player in the PLAYER attribute of the t:MEDIA element. "
{52ca3bcf-3b9b-419e-a3d6-5d28c0b0b50c}
" is the content proxy class identifier.Note The DirectMusic HTML control and the DirectMusic TIME control are turned off by default in Windows 2000 Service Pack 4 (SP4), Windows XP Service Pack 1 (SP1), Windows Server 2003, and later. Therefore, the DirectMusic API should no longer be referenced by this property.
Example
The following example applies only to Internet Explorer 6 and later. It demonstrates media playing in the Media Bar, synchronized with an HTML+TIME timeline playing in the Media Bar content area, with
{52ca3bcf-3b9b-419e-a3d6-5d28c0b0b50c}
specified in the PLAYER attribute of the t:MEDIA element.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML XMLNS:t ="urn:schemas-microsoft-com:time"> <HEAD> <STYLE> .time {behavior: url(#default#time2);} </STYLE> <?IMPORT namespace="t" implementation="#default#time2"> <LINK REL="stylesheet" HREF="/workshop/samples/samples.css" TYPE="text/css"> </HEAD> <BODY id="oBody"> <t:PAR syncBehavior="locked"> <t:MEDIA id="m1" src="/workshop/samples/author/behaviors/media/j0082200.mid" player="{52ca3bcf-3b9b-419e-a3d6-5d28c0b0b50c}" syncMaster="true" syncBehavior="locked" begin="1" /> <t:ANIMATEMOTION id="a1" begin="m1.begin" dur="9" targetElement="oDiv" path="M 0 0 L 100 300" fill="freeze"/> <t:SEQ style="font-size:18pt;color:#ff0000" syncBehavior="locked" begin="m1.begin" fill="freeze"> <DIV class="time" dur="1.5">Add Some Text</DIV> <DIV class="time" dur="1.5">Or HTML</DIV> <DIV class="time" dur="2">To Accompany</DIV> <DIV class="time" dur="2">Media Playing in the Media Bar</DIV> </t:SEQ> </t:PAR> <DIV id="oDiv" class="time" style="background-color:#FFCC00;position:absolute;height:40;width:120; top:70;left:10;font-size:18;border-style:solid" > Falling DIV</DIV> </BODY> </HTML>
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/player_proxyGUID.htm
Applies To
t:ANIMATION, t:AUDIO, t:IMG, t:MEDIA, t:REF, t:VIDEO
See Also