HRESULT hr;
LPDISPATCH pDispHTMLDocument = m_Web.GetDocument();
IHTMLDocument *pIHTMLDocument;
pDispHTMLDocument->QueryInterface(IID_IHTMLDocument, (void **)&pIHTMLDocument);
LPDISPATCH pDispScript;
hr = pIHTMLDocument->get_Script(&pDispScript);
// Debug message to show progress.
CWindow msgWindow;
msgWindow.Attach(m_hWnd);
msgWindow.MessageBox(_T("Here"));
DISPID dispid;
OLECHAR *pszFunct = L"SetCMJAutomation";
hr = pDispScript->GetIDsOfNames(IID_NULL, &pszFunct, 1, LOCALE_USER_DEFAULT, &dispid);
DISPPARAMS dispparams;
memset(&dispparams, 0, sizeof dispparams);
dispparams.cArgs = 1;
dispparams.rgvarg = new VARIANT[1];
dispparams.cNamedArgs = 0;
dispparams.rgvarg[0].vt = VT_DISPATCH;
dispparams.rgvarg[0].pdispVal = m_MJDisp;
VARIANT varResult;
hr = pDispScript->Invoke(dispid, IID_NULL, LOCALE_USER_DEFAULT,
DISPATCH_METHOD,
&dispparams, &varResult, NULL, NULL);
delete[] dispparams.rgvarg;
<html>
<body>
<b>Script should show MC's Playing Now list here:</b><p>
<script>
// These lines show the "old way" of making this page work outside of
// of MC either using JHC's MCIO server, or by directly calling MC's
// Automation SDK out-of-process (requires MC 2.1.238 or above
// NOTE: Commented out for Track Info use
//var mcio = new ActiveXObject("MCIOServer.MediaCentreInsideOutServer");
//var mjA = mcio.GetMJAutomationObject(0, 1);
//var mjA = new ActiveXObject("MediaJukebox Application");
var mjA;
// The code I inserted into the Track Info Plugin will call this method,
// passing it an Automation SDK object, which I store in the global mjA.
function SetCMJAutomation(CMJAutomationObj)
{
mjA = CMJAutomationObj;
alert("SetCMJAutomation was called");
var mjCurPlaylistA = mjA.GetCurPlaylist();
var count = mjCurPlaylistA.GetNumberFiles();
for(i = 0; i < count; i++)
{
mjFileA = mjCurPlaylistA.GetFile(i);
document.write(i + ": " + mjFileA.Filename() + "<br>");
}
}
</script>
</body>
</html>
Method | Speed |
Use MC Automation directly out of process (new feature of MC 2.1.238) | 80 files/sec |
Use JHC's MediaCenterInsideOut plugin to provide out-of-process access to MC Automation | 160 files/sec |
Use MC Automation inside Track Info template (in-process) | 320 files/sec |