parentTimeEnd property
Gets the end time of the current element as an offset from the begin time of the parent element.
Syntax
JScript |
---|
|
Property values
Type: Integer
the end time of the current element, in seconds.
Remarks
This property represents the sum of the parentTimeBegin property and the activeDur property. For example, if an element has a begin time of 4 seconds, a duration (dur) of 10 seconds, and autoReverse set to true, the value of the parentTimeEnd property will be 24 seconds.
Examples
This example uses the parentTimeEnd property to retrieve the end time of the current element.
Code example: http://samples.msdn.microsoft.com/workshop/samples/author/behaviors/parenttimeend.htm
<HTML XMLNS:t="urn:schemas-microsoft-com:time">
<HEAD>
<TITLE>parentTimeEnd Property</TITLE>
<SCRIPT>
function getValue(){
parentBegin.innerText += div1.currTimeState.parentTimeEnd + ' second(s)';
}
</SCRIPT>
<STYLE>
.time { behavior: url(#default#time2) }
</STYLE>
<?IMPORT namespace="t" implementation="#default#time2">
</HEAD>
<BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="fixed" BGCOLOR="#FFFFFF"
LINK="#000000" VLINK="#808080" ALINK="#000000">
<B>Document timer:</B>
<SPAN id="Timer1" class="time" dur=".01" repeatCount="indefinite" fill="hold"
onrepeat="innerText=parseInt(document.body.currTimeState.activeTime);">0</SPAN>
<BR>
<B>Time container timer:</B>
<SPAN id="Timer2" class="time" dur=".01" repeatCount="indefinite" fill="hold"
onrepeat="innerText=parseInt(t1.currTimeState.activeTime);">0</SPAN>
<BR><BR>
<t:excl ID="t1" repeatDur="indefinite" onbegin="getValue();">
<DIV ID="div1" CLASS="time" BEGIN="4" DUR="10" autoReverse="true"
style="position:relative;top:5px;left:0px;width:550px;height:100px;
background-color:yellow;text-align:center;font-size:large">
This div begins at 4 seconds and has a duration of 10 seconds.
Its autoReverse property is set to "true".
</DIV>
</t:excl>
<BR>
<B>parentTimeEnd</B><SPAN id="parentBegin"> - Element's end time as an offset from
parent element's begin time: </SPAN><BR>
</BODY>
</HTML>