Hello group,<br>
<br>
I'm a beginner learning Python. Trying to automate AutoCAD.
What I wanted to know is how to receive event fired by the AutoCAD
application. When a drawing opening process is done, the
application will fire an event EndOpen. In VBA, I know how to
catch and respond to this event. But do not know how to
accomplish it with Python. <br>
<br>
<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:python-win32@python.org">import win32com.client<br>
acad = win32com.client.Dispatch("AutoCAD.Application")<br>
acad.Visible = True<br>
acad.WindowState = 3<br>
doc = acad.Documents.Open(r"C:\Drawings\test.dwg")<br>
print ("Drawing opened.")<br>
<br>
</a>Thanks for your time and help,<br clear="all"><br>-- <br><br>Regards,<br>- wcc<br><br>