Gets equalizer class
Gets JSON of MediaMonkey settings to view/change
comma separated list of sections to get (or leave empty string for all)
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
Specifies the masks list
Sets JSON and applies to MediaMonkey settings, so MediaMonkey behaves according to the new settings immediatelly
comma separated list of sections to apply settings for (or leave empty to set all)
var sett = JSON.parse( app.settings.getJSON('Appearance')); <br>
sett.Appearance.CloseToTray = true; <br>
app.settings.setJSON( JSON.stringify( sett), 'Appearance'); <br>
Access to various MediaMonkey settings. Access via the global
app.settings
.Settings