Notifications
Clear all

[Closed] find all object

Hello,
how can put on a file .txt all the geometry objects present on my scene?
Thanks

7 Replies
2 Replies
(@denist)
Joined: 1 year ago

Posts: 0

it puts all geometry object names in alphabetically sorted order in text file:


(
	file = (getdir #temp) + "geo_object_names.txt"
	if (ss = createfile file) != undefined do
	(
		list = for node in geometry collect node.name
		sort list
		for name in list do format "%
" name to:ss
		flush ss 
		close ss
	)
)

(@skylab82)
Joined: 1 year ago

Posts: 0

i have try this but he don’t work :curious:

what is not working? it can’t be not working.


 (
	delete objects
	teapot()
	box()
	sphere()

	file = (getdir #temp) + "geo_object_names.txt"
	if (ss = createfile file) != undefined do
	(
		list = for node in geometry collect node.name
		sort list
		for name in list do format "%
" name to:ss
		flush ss 
		close ss
		edit file
	)
)

i have this error


-- Syntax error: at ), expected <factor>
--  In line: 	)

probably because you aren’t coping whole script from “code” area and missing last “)” symbol.

1 Reply
(@skylab82)
Joined: 1 year ago

Posts: 0

ok,
i was wrong because I tried to run the script under maxscript listner.
Is possible save the Hierarchy of My Objects?

it’s possible…
with no sorting for all objects in the scene:


(
	fn collectNames node pre:"" ss: = 
	(
		format "%%
" pre node.name to:ss
		for n in node.children do collectNames n pre:(pre + "	") ss:ss
	)

	file = (getdir #temp) + "object_names.txt"
	if (ss = createfile file) != undefined do
	(
		for node in objects where node.parent == undefined do collectNames node ss:ss
		flush ss 
		close ss
		edit file
	)
)