Abstract Property

This topic documents a feature of HTML+TIME 2.0, which is obsolete as of Windows Internet Explorer 9.

Gets the Abstract content of the entry banner in an Advanced Stream Redirector (ASX) file by using the event object.

Syntax

[ sAbstract = ] event.Abstract

Possible Values

sAbstract String that receives the Abstract content of an entry banner in an ASX file.

The property is read-only. The property has no default value.

DHTML expressions can be used in place of the preceding value(s). As of Internet Explorer 8, expressions are supported in IE7 Standards mode and IE5 (Quirks) mode only. For more information, see About Dynamic Properties and Defining Document Compatibility.

Remarks

onURLFlip 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>

In the following example, the Abstract property is exposed by the event object.

...
function trackChange(){
    banner1.innerText = event.Banner;
    bannerabstract1.innerText = event.Abstract;
    bannermoreinfo1.innerText = event.MoreInfo;
}
...
<t:media id="m1" src="/workshop/samples/author/behaviors/media/media.asx"
    onmediacomplete="updateBtns();updateFields();"
    ontrackchange="trackChange();"/>
...
<B>Banner:</B>&nbsp;&nbsp;<SPAN id="banner1"></SPAN>
<BR>
<B>Abstract for banner:</B>&nbsp;&nbsp;<SPAN id="bannerabstract1"></SPAN>
<BR>
<B>More information of banner:</B>&nbsp;&nbsp;<SPAN id="bannermoreinfo1"></SPAN>
...

Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/abstract_1.htm

Applies To

event