AutoIT Notes

From PeformIQ Upgrade
Revision as of 09:31, 19 February 2013 by PeterHarding (talk | contribs)
Jump to navigation Jump to search

Links

8 http://www.autoitscript.com/autoit3/docs/intro/running.htm

Accessing from Python=

If you want just run the autoit script then use os.system or os.popen and take a look at this page Running Scripts. If you want to call autoit methods from your python script then:

  1. ) Register AutoItX3.dll in your system regsvr32 AutoItX3.dll
  2. ) Install PyWin32
  3. ) Use autoit from your code as follows:
import win32com.client

autoit = win32com.client.Dispatch("AutoItX3.Control")

autoit.AnyAutoitMethod()