This topic has not yet been rated - Rate this topic

loop property

Sets or retrieves the number of times a sound or video clip will loop when activated.

Syntax

HRESULT value = object.put_loop( loop);HRESULT value = object.get_loop(* loop);

Property values

Type: VARIANT

-1

Loops infinitely.

0

Loops one time.

count

Number of times to loop.

ValueCondition
1

Default. Loops once.

 

Remarks

To restart a sound or video clip after changing its IHTMLInputImage::loop property, set the IHTMLBGsound::src property or IHTMLInputImage::dynsrc property to itself. For example:


oBGSound.src = oBGSound.src

The following are descriptions of how the IHTMLInputImage::loop property works for some boundary cases.

<BGSOUND src="file:///c:\win95\system\msremind.wav">Loops one time
<BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP>Loops one time.
<BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=>Loops one time.
<BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=0>Loops one time.
<BGSOUND src="file:///c:\win95\system\msremind.wav" LOOP=-1>Loops infinitely.

 

 

 

Build date: 11/12/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.