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 _______________________________________________ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding
