Is there a way to launch these 2 windows from another button or script?
I was looking in external commands but didn’t find anything relevant
Chao anh,
Have you check the Journal file, it usually shows the command that is used to launch these?
- ID_EXPORT_PDF
- ID_IFC_OPTIONS
The pyrevit modules offers utilities:
- pyRevit/pyrevitlib/pyrevit/__init__.py at f253c75579f9302e9cf840bb0e27fddde62cae53 · pyrevitlabs/pyRevit · GitHub
- pyRevit/pyrevitlib/pyrevit/__init__.py at f253c75579f9302e9cf840bb0e27fddde62cae53 · pyrevitlabs/pyRevit · GitHub
from pyrevit import HOST_APP
HOST_APP.post_command("ID_EXPORT_PDF")
# HOST_APP.post_command("ID_IFC_OPTIONS")
3 Likes

