ISDBPlayer::StopAfterCurrent: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{MethodDeclaration|SDBPlayer|ISDBPlayer|Property Get/Let StopAfterCurrent As Boolean}}
{{MethodDeclaration|SDBPlayer|ISDBPlayer|Property Get/Let StopAfterCurrent As Boolean}}
===Method description===
===Method description===


Stops playback after current track.
Stops playback after currently playing track.


Note: Introduced in MediaMonkey 3.1.2
Note: Introduced in MediaMonkey 3.1.2
===Example===
<source lang="vb">
'This example will show how to correctly implement
'Correct = As Track is playing we set stop after current
SDB.Player.Play
SDB.Player.StopAfterCurrent = True
MsgBox( "Enabled")
'Incorrect = As Track is not playing setting stop after current doesn't have effect (got reset when player starts playing)
SDB.Player.Stop
SDB.Player.StopAfterCurrent = True
SDB.Player.Play
MsgBox( "Disabled")
</source>


[[Category:Scripting|{{PAGENAME}}]]
[[Category:Scripting|{{PAGENAME}}]]

Revision as of 23:03, 13 October 2010

CoClass SDBPlayer, Interface ISDBPlayer

Property Get/Let StopAfterCurrent As Boolean

Method description

Stops playback after currently playing track.

Note: Introduced in MediaMonkey 3.1.2

Example

'This example will show how to correctly implement
'Correct = As Track is playing we set stop after current
SDB.Player.Play
SDB.Player.StopAfterCurrent = True
MsgBox( "Enabled")

'Incorrect = As Track is not playing setting stop after current doesn't have effect (got reset when player starts playing)
SDB.Player.Stop
SDB.Player.StopAfterCurrent = True
SDB.Player.Play
MsgBox( "Disabled")