$time
= PlayTimeLeft ()
Returns the pending play back time.
Return
Value
The remaining play back time in milliseconds.
Example
answer 1
Play "Music.wav"
while true
$pending = PlayTimeLeft()
display int($pending/1000) " seconds more.."
if $pending <= 0
break
Endif
sleep 100
EndWhile