Access to various MediaMonkey settings. Access via the global app.settings.

Settings

Constructors

Properties

Gets equalizer class

Undocumented

Methods

  • Adds mask to history (to be re-used in mask dropdowns)

    Parameters

    • Mask: string

      to store

    • ListType: string

      Specifies the masks list

    Returns void

  • Gets JSON of MediaMonkey settings to view/change

    Parameters

    • Sections: string

      comma separated list of sections to get (or leave empty string for all)

    Returns string

    Example

    var sett = JSON.parse( app.settings.getJSON('System, Player'));  <br>
    alert(sett.System.TempDir); <br>
    alert(sett.Player.OutputPlugin); <br>
  • This function returns list of masks used in history / predefined masks for mask dropdown

    Parameters

    • ListType: string

      Specifies the masks list

    Returns StringList

  • Returns string

    Undocumented

  • Returns void

    Undocumented

  • Returns Promise<any>

    Undocumented

  • Sets JSON and applies to MediaMonkey settings, so MediaMonkey behaves according to the new settings immediatelly

    Parameters

    • JSON: string
    • Sections: string

      comma separated list of sections to apply settings for (or leave empty to set all)

    Returns string

    Example

    var sett = JSON.parse( app.settings.getJSON('Appearance')); <br>
    sett.Appearance.CloseToTray = true; <br>
    app.settings.setJSON( JSON.stringify( sett), 'Appearance'); <br>