Gets equalizer class
Gets JSON of MediaMonkey settings to view/change
var sett = JSON.parse( app.settings.getJSON('System, Player')); <br>
alert(sett.System.TempDir); <br>
alert(sett.Player.OutputPlugin); <br>
comma separated list of sections to get (or leave empty string for all)
This function returns list of masks used in history / predefined masks for mask dropdown
Specifies the masks list
Sets JSON and applies to MediaMonkey settings, so MediaMonkey behaves according to the new settings immediatelly
var sett = JSON.parse( app.settings.getJSON('Appearance')); <br>
sett.Appearance.CloseToTray = true; <br>
app.settings.setJSON( JSON.stringify( sett), 'Appearance'); <br>
comma separated list of sections to apply settings for (or leave empty to set all)
Access to various MediaMonkey settings. Access via the global
app.settings
.