Complete novice here.
Is there a way to output the current selection of objects to a text file or spreadsheet?
Using 3ds max 2016.
Forum topic · General Scripting
By thefamblycat · 2019-03-25
Complete novice here.
Is there a way to output the current selection of objects to a text file or spreadsheet?
Using 3ds max 2016.
.
miauu · 2019-03-29
(
infoFile = createFile (@"D:\outFile.txt")
for o in selection do
(
format "%\n" o to:infoFile
)
close infoFile
)