Using Python and Hypermesh 2024, what would be a Python code to set the tag attribute name for a surface? I'd like to run through a list of selected surfaces in Hypermesh and have the Python code assign a sequential name (tag) to each name such as, "stiffener01", "stiffener02", etc.
Thanks.
in HM 25.0 we have the pythonrecorder
import hm
import hm.entities as ent
def run():
from hm.mdi import apis
model = apis.HmModelDebug()