AutoIT Notes
Revision as of 10:34, 19 February 2013 by PeterHarding (talk | contribs)
Links
- http://motersho.com/blog/index.php/2009/10/20/autoit-command-line-parameters-a-new-approach/
- http://www.zqna.net/qna/khspxr-how-to-run-or-execute-python-file-from-autoit.html
- http://www.adobe.com/cfusion/google/communityengine/index.cfm?postId=11187&productId=4
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:
- ) Register AutoItX3.dll in your system regsvr32 AutoItX3.dll
- ) Install PyWin32
- ) Use autoit from your code as follows:
import win32com.client autoit = win32com.client.Dispatch("AutoItX3.Control") autoit.AnyAutoitMethod()