Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How can I create an instance for woodwork 4 inventor addin inside a python script?
import win32com.client as wc
# istanzio l'applicazione di inventor
try:
inv = wc.GetActiveObject('Inventor.Application')
ww = inv.woodworkApplication
except:
inv = wc.Dispatch('Inventor.Application')
inv.Visible = True
Solved! Go to Solution.