I have a running application (exe), and I want to export its events into an HTML page (in my case, it is a gadget, but it's not affect now).
The way to do so is to create an activeX object which import to itself the events (it has been already built) and exports them to the javascript.
what I've tried to do is to register the event on the activeX object, so when an event happens, the JS function will be called from activeX, but for some reason it doesn't work.
my JS code:
var myControl = new ActiveXObject("GadgetAgain.Again");
myControl.DefineEventFunction(getEventString);
out(myControl.printMe("asdf"));
(the "DefineEventFunction" gets a JS function with no parameters)
here is the activeX code:
STDMETHODIMP CAgain::printMe(BSTR name, BSTR* newName)
{
VARIANT *x = NULL;
get_onEventFunction(x);
if (x != NULL) {
x;
*newName = SysAllocString(name);
return S_OK;
}
newName = new BSTR();
return S_FALSE;
}
STDMETHODIMP CAgain::DefineEventFunction(VARIANT functionName)
{
// TODO: Add your implementation code here
put_onEventFunction(functionName);
return S_OK;
}
As you can see, at "PrintMe" method I called to the "x" function of javascript which registered before. Why doesn't it work? maybe because I defined JS function as VARIANT? If so, how have I to define it? Or maybe it happens because on the JS code the parameter of DefineEventFunction doesn't point to the JS function?
