INTERACT FORUM

Windows => Plug-in Development => Topic started by: Nikolay on July 09, 2002, 10:34:46 am

Title: To BASJ mini-me skin
Post by: Nikolay on July 09, 2002, 10:34:46 am
1) How to get/excess the status of the "EQ on or off state" from the script?

you can use EQOn property from the MJMixerAutomation object. see MJAutomation on explanation how to access the the object.
http://www.musicex.com/mediajukebox/DevZone/MJAutomation.html

It's also very useful to user OnMixerChanged event to get notifications about Mixer changes.

2) How to one assign a button to activate the preset EQ setting?

If you are referring to the EQ presets than currently it's not supported by MJ.

3) How to excess the status of "Mute/ un mute" from the script line?

You can use MJautomation interface to access the state of the EQ.
Example:

MJAutomation.GetMJMixer().Mute = 1; // muted
if(MJAutomation.GetMJMixer().Mute == 0)
{
... do something
}

Hope that helps,
Nikolay
Title: RE:To BASJ mini-me skin
Post by: basj on July 09, 2002, 10:21:45 pm
thanks for the info...

Regarding the "EQ Preset" is it possibble to assign a button to activate the DSP Studio in the MJ? and users could change the EQ presets from there?

If possibble...can you teach me how?

Thanks
Basj
Title: RE:To BASJ mini-me skin
Post by: Nikolay on July 10, 2002, 03:55:28 pm
is it possibble to assign a button to activate the DSP Studio in the MJ?
No, not in v8, we will implement it in next version.

Nikolay