Output Current Selection to Text file or Spreadsheet

Complete novice here.

Is there a way to output the current selection of objects to a text file or spreadsheet?
Using 3ds max 2016.

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
miauu's picture

.

(
	infoFile = createFile (@"D:\outFile.txt")	
	for o in selection do
	(
		format "%\n" o to:infoFile 
	)
	close infoFile
)

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.