Re: Christina Aguilera caught back stage Naked 7433

2004-05-04 Thread Justin Wood
joey wrote: Christina Aguilera caught back stage Naked stop sending these viruses through! ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

Re: Call JavaScript in embedded browser from embedding application

2004-05-04 Thread Anton Bar
Thanks aplenty!! QI your embedded browser for a poitner to the nsIWebNavigation interface, and then call LoadURI with a string of the form "javascript:expr" where expr is some Javascript expression (including a Javascript function, complete with parameters).

Re: Call JavaScript in embedded browser from embedding application

2004-05-04 Thread Brad Fish
Anton Bar wrote: Is there any possibility for embedding application to call java script loaded by a page into embedded browser? QI your embedded browser for a poitner to the nsIWebNavigation interface, and then call LoadURI with a string of the form "javascript:expr" where expr is some Javascri

Re: nsURIContentListener::OnStartURIOpen example?

2004-05-04 Thread Christian Biesinger
fiery wrote: My question is how to hook in the WebBrowser object and start receiving the nsURIContentListener::OnStartURIOpen notification. Only one nsIURIContentListener will receive that notification. (the one set on the docshell, iirc) You'd probably have more luck by implementing nsIContentP

Copy selection won't work the second time in VB

2004-05-04 Thread Zarneth
I'm using VB.net, with the mozilla activex controll. And I'm trying to copy the selected text to the clipboard using the following line: Browser.ExecWB(OLECMDID.OLECMDID_COPY, OLECMDEXECOPT.OLECMDEXECOPT_DODEFAULT) Works fine in with the IE controll, but with mozilla/gecko it only copies to the c

how to disable selection

2004-05-04 Thread Anton Bar
Hi all How can I disable content selection in the embedded browser. I thought to catch mouseDown etc. but I have a feeling that there might be a simpler way to do that. TIA, Anton. ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.moz

Re: call xpcom from plugin (getting desperate :-( )

2004-05-04 Thread Anton Bar
Sorry for wasting everybody's time, it was completely my fault. When compiling I commented out GetNextSibling that didn't passed compilation (should be 'undef'ed after including ) and this resulted in different vtable interpretations. Obviously, MfcEmbed worked because is was compiled before co

Call JavaScript in embedded browser from embedding application

2004-05-04 Thread Anton Bar
Hi all, Is there any possibility for embedding application to call java script loaded by a page into embedded browser? TIA, Anton. ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

nsURIContentListener::OnStartURIOpen example?

2004-05-04 Thread fiery
Hello, I would appreciate a simple example how to intercept the nsURIContentListener::OnStartURIOpen event in a XPCOM Component. I've implemented the nsIObserver::Observe method and now I intercept the "xpcom-startup" event following the Doug Turner example written in the "Creating XPCOM Component