ScriptSpot

Forum topic · General Scripting

Output Current Selection to Text file or Spreadsheet

By thefamblycat · 2019-03-25

Description

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 (1)

.

miauu · 2019-03-29


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