How to implement an interactive action in pyAEDT #3370
-
I have been thinking about an implementation of an interactive feature. For example, I just wanted to interrogate edge id, face id of objects that currently user selected Also, is it possible to call ACT functionality? if so, then how? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @IkeChoice , You can choose different open source libraries to create an user interface. I have started a new project using Pyside6, you could find more information here: ACT functionalities can not be called. Which one are you interested? About take the information of the selected object, you can use app.modeler.selections which will give you the selected object names, then you can perform all needed operations. |
Beta Was this translation helpful? Give feedback.
Hi @IkeChoice ,
You can choose different open source libraries to create an user interface. I have started a new project using Pyside6, you could find more information here:
https://github.com/ansys/pyaedt-toolkit-template
ACT functionalities can not be called. Which one are you interested?
About take the information of the selected object, you can use app.modeler.selections which will give you the selected object names, then you can perform all needed operations.