Message 1 of 10
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Why Add-Ins in manufacture workspace are grayed out.
How can i bring them back to work?
Solved! Go to Solution.
Why Add-Ins in manufacture workspace are grayed out.
How can i bring them back to work?
Solved! Go to Solution.
I'm told it's supposed to be fixed in an update planned to be coming out on February 3
In the meantime this could be a possible workaround for running the commands:
https://modthemachine.typepad.com/my_weblog/2020/01/run-commands-from-the-text-commands-panel.html
@adam.nagy Thank you for that workaround. I will that submit to my customers if Feb3 is to far 😉
Just to update the people watching this thread and facing this issue, We might deliver hot-fix early hopefully by tomorrow. Thanks for your patience.
@goyals , @adam.nagy That would be awesome. Thanks for the support!
To boil down the work-around, you can start an add-in using this statement in a Python text command:
adsk.core.Application.get().userInterface.commandDefinitions.itemById("<command-id>").execute()
where <command-id> is the command id string for the add-in. Since I wrote my own add-in, I know what mine is. To list them all to find the one you want, paste in this text command:
for cmd in adsk.core.Application.get().userInterface.commandDefinitions: print(cmd.id, " name: ", cmd.name)
Just to update , hot fix is deployed last night. Please try once to verify whether problem is resolved on your side or not. Thanks.
How do I get the hot fix?