Using Mechanical Scripting, how can I export images of results?

Landon Mitchell Kanner
Member, Employee Posts: 133
Comments
-
for analysis in ExtAPI.DataModel.AnalysisList: analysisName = analysis.Name solution = analysis.Solution for child in solution.Children: childName = child.Name +"_"+ analysisName child.Activate() imagePath = "D:/{}.png".format(childName) ExtAPI.Graphics.ExportImage(imagePath)
0