bannerMoreInfo Property
This topic documents a feature of HTML+TIME 2.0, which is obsolete as of Windows Internet Explorer 9.
Gets the bannerMoreInfo content of an entry in an Advanced Stream Redirector (ASX) file.
Syntax
[ sBannerMoreInfo = ] object.playList.activeTrack.bannerMoreInfo
Possible Values
sBannerMoreInfo String that receives the bannerMoreInfo content of a an entry in an ASX file. The property is read-only. The property has no default value.
Remarks
bannerMoreInfo was introduced in Microsoft Internet Explorer 6.
Examples
This is an example entry in an ASX file.
<ASX Version="1.0" PreviewMode="No" > <entry> <title>First title</title> <author>Unknown 1</author> <copyright>1998</copyright> <abstract>WAV File</abstract> <ref href=""/> <banner href = "first_title.gif" > <moreinfo href = "first_title.doc" /> <abstract>Visit the first abstract Web site</abstract> </banner> </entry> </asx>
The following example demonstrates how to retrieve the bannerMoreInfo content.
... function updateFields(){ //... banner1.innerText = m1.playList.activeTrack.Banner; bannerabstract1.innerText = m1.playList.activeTrack.BannerAbstract; bannermoreinfo1.innerText = m1.playList.activeTrack.BannerMoreInfo; } ... <t:media id="m1" src="/workshop/samples/author/behaviors/media/media.asx" onmediacomplete="updateBtns();updateFields();" ontrackchange="trackChange();"/> ... <B>Banner:</B> <SPAN id="banner1"></SPAN> <BR> <B>Abstract for banner:</B> <SPAN id="bannerabstract1"></SPAN> <BR> <B>More information on banner:</B> <SPAN id="bannermoreinfo1"></SPAN> ...
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/bannermoreinfo.htm
Applies To
playItem