Hello.I'm Trying to code geometry data to .txt file. For 1 mesh my script working but for 2 or more i have an error. "-- Unknown property: "name" in $selection"Can anybody help me with that?
Thank you for your help, script work well now. out_name = (getDirectories ((systemTools.getEnvVariable("USERPROFILE"))+"/Desktop"))[1] + "test.txt" out_file = createfile out_name for curObj in (selection as array) do (format "% \n X:%" curObj.name curObj.pos.controller[1].value to:out_file) close out_file I want to export…