Eh?
There's confusing cross referencing here..
The enum stuff is for controlling MC via the command line interface.
Using the COM Interface is different as a sample script from my C#
Script plugin shows:
______________________________________________-
using System;
using System.Windows.Forms;
//css_reference MediaCenter.dll;
class Script : MarshalByRefObject
{
public void Init(MediaCenter.MCAutomation mediaCenterInterface)
{
//Show a Sample Message Box Proving we are running!
MessageBox.Show("I am a Running Script!");
//Set the Volume Of Media Center!
MediaCenter.IMJMixerAutomation MCMixer;
MCMixer = mediaCenterInterface.GetMJMixer();
MCMixer.Volume = 20;
}
}
____________________________________
No need for Enums.
The full automation documentation is found here
http://wiki.jrmediacenter.com/index.php/Media_Center_Automation#Automation_ObjectsJohn was pointing you towards the stuff specifically relating to the "Playing Now" playlist.