Remarks
Adds a song (item) to the list of delayed playbacks and predisposes its initial settings.
For details about management of delayed playbacks refer to the How to manage delayed playbacks tutorial.
Syntax
[Visual Basic]
control.DelayedPlayback.ListAddItemEx (
nPlayer as Integer,
strPathname as String,
nDelay as Long,
nStartPos as Long,
nEndPos as Long,
nLoopCount as Long,
nFadeInLength as Long,
nFadeOutLength as Long
) as Long
|
|
[C++]
long control.DelayedPlayback.ListAddItemEx (
short nPlayer,
LPCTSTR strPathname,
long nDelay,
long nStartPos,
long nEndPos,
long nLoopCount,
long nFadeInLength,
long nFadeOutLength
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the player that owns the playlist
|
strPathname
|
String containing the absolute pathname of the element to add. If this string is left empty, the current sound loaded into the given player will be added.
|
nDelay
|
Number representing the delay expressed in milliseconds
|
nStartPos
|
Playback range start position expressed in milliseconds
|
nEndPos
|
Playback range end position expressed in milliseconds
|
nLoopCount
|
Number of loops applied to the given range
|
nFadeInLength
|
Fade-in length expressed in milliseconds
|
nFadeOutLength
|
Fade-out length expressed in milliseconds
|
Return value
Value
|
Meaning
|
|
|
0
|
An error occurred (see the LastError property for further error details)
|
Other values
|
Unique identifier of the file that will have a delayed playback
|
|