hi,
we like to replace the ms-ie by the mozilla-activeX in our customers-projects, because of the lot of security issues by ms-ie...
so our main problem is, that we deal a lot with the HTMLDocumentEvents2_Event in the app�s: mshtml.HTMLDocument doc; doc = (mshtml.HTMLDocument)this.oBrowser.Document; DocEvents = (mshtml.HTMLDocumentEvents2_Event)doc; DocEvents.onmousedown +=new mshtml.HTMLDocumentEvents2_onmousedownEventHandler(DocEvents_onmousedown); DocEvents.onclick += new mshtml.HTMLDocumentEvents2_onclickEventHandler(ClickEventHandler); ...
i already figured out the following (oBrowser is the Mozilla-ActiveX): //works for mozilla... mshtml.IHTMLDocument2 oDoc; oDoc = (mshtml.IHTMLDocument2)this.oBrowser.Document;
here my question: is there any chance to attach an eventlistener to the mouse-down-event of a mozilla-document in the application (NOT in the html-document) to replace the browser-popupmenu by a application-popupmenu (or do any other-action for the mouse-down-event)?
so im new to the mozilla-activex, please include a source-sample...
help would be greate
thanks
oliver k. okroll_at_clonedbinary_com
I worked on implementing events with the moz ax, and proposed a patch (https://bugzilla.mozilla.org/show_bug.cgi?id=232521) a few month ago. I have done a lot more since then, so if this is what you want, tell me, and I'll send you an updated patch.
Alex _______________________________________________ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding
