ISDBApplicationEvents::OnPartyModeEnabled

From MediaMonkey Wiki
Jump to navigation Jump to search

CoClass SDBApplication, Interface ISDBApplicationEvents

Sub OnPartyModeEnabled(Enabled As Boolean)


Parameters

Name Type Description
Enabled Boolean Enabled is True when Party mode has entered and False when Party mode has exited


Event description

Is called when Party mode state changes.

Introduced in MediaMonkey version 4.1.


Example code

Sub OnStartUp()    
    Script.RegisterEvent SDB, "OnPartyModeEnabled", "SDBPartyModeEnabled"
End Sub

Sub SDBPartyModeEnabled(Enabled)
    if Enabled then
      MsgBox("Party mode entered")
    else
      MsgBox("Party mode exited")
    end if  
End Sub