Title: Message
In this example, I am using WScrip, so the available methods should be found by looking up WScript:
 
from win32com.client import Dispatch
from time import sleep
s=Dispatch('WScript.Shell')
s.Run('Explorer http://www.msn.com')
 
or:
 
from win32com.client import Dispatch
from time import sleep
s=Dispatch('WScript.Shell')
s.Run('Mozilla http://www.msn.com')
sleep(3)
 
 
Chad
 
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Gailer
Sent: Thursday, June 09, 2005 10:15 AM
To: python-win32@python.org
Subject: [python-win32] COM access to Mozilla Firefox

What is the application name for Mozilla Firefox (to be used in win32com.client.Dispatch())?

Where is documentation as to what properties/methods are available?

Ditto on last question for Internet Explorer.

Bob Gailer
mailto:[EMAIL PROTECTED]
510 558 3275 home
720 938 2625 cell

_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to