Hi all,
I want to return string from autoit script to the python code.
Autoit:
Exit("22 FE 45") -> not working
Exit(1) -> Working
Exit(0) -> Working
python:
import os
res=os.system(autoitmine.exe)
print "res",res
I got some hint of @ExitCode macro, but dont know how to use it to get the string in python variable 'res'.
Please resolve this issue for me if anyone knows about this.