INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: To BASJ mini-me skin  (Read 1284 times)

Nikolay

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1681
  • Former CTO, JRiver, Inc.
To BASJ mini-me skin
« 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
Logged

basj

  • Regular Member
  • Member
  • *
  • Posts: 2
  • Am new hereOwn BusinessComputer Graphics
RE:To BASJ mini-me skin
« Reply #1 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
Logged

Nikolay

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1681
  • Former CTO, JRiver, Inc.
RE:To BASJ mini-me skin
« Reply #2 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
Logged
Pages: [1]   Go Up