We tried to insert the Mozilla Activex control into a html page to be
open in IE, because we want to use xul without instaling mozilla, and
it works fine.
However, we need to access the values of the elements of the xul page,
witch is in the activex, with something like :
mozControl.document.getElementById("aField").value where mozControl is the id of the activex in the html page.
But it seems that the DOM don't work when we try to reach the elements
of the xul from the html page in witch it is embeded.
How can we do that?
For this to work, you would need to extend the DOM that the ActiveX control exposes to its host. Right now it only exposes DOM elements as HTML elements (AFAIK). Looks like the code that does that lives in:
http://lxr.mozilla.org/seamonkey/source/embedding/browser/activex/src/common/
Adam Lock is the original author of this code, he may be able to help.
(sorry for my english)
-- jst
