Re: [python-win32] win32com and GetRef

2005-11-03 Thread Mark Hammond
> 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

Re: [python-win32] win32com and GetRef

2005-11-03 Thread David Fraser
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

Re: [python-win32] win32com and GetRef

2005-11-02 Thread Mark Hammond
> 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')