> Mark Hammond wrote:
>
> >Not from an external process, no - xpcom does not work across
> processes. If
> >you wanted to write a Mozilla extension (ie, some "chrome"),
> then other work
> >I am doing with the Mozilla guys will soon make this possible -
> you will be
> >able to use Python whereeve
Mark Hammond wrote:
>Not from an external process, no - xpcom does not work across processes. If
>you wanted to write a Mozilla extension (ie, some "chrome"), then other work
>I am doing with the Mozilla guys will soon make this possible - you will be
>able to use Python whereever you can current
> I'm using win32com to manipulate the DOM inside of Internet
> Explorer. Something like this:
>
> #-
> --
> import win32com.client
>
> ie = win32com.client.Dispatch('InternetExplorer.Application')
> ie.Navigate('about:about')