Notifications
Clear all
[Closed] find all object
Jun 25, 2010 1:44 pm
Hello,
how can put on a file .txt all the geometry objects present on my scene?
Thanks
7 Replies
2 Replies
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
)
)
Jun 25, 2010 1:44 pm
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
)
)
Jun 25, 2010 1:44 pm
i have this error
-- Syntax error: at ), expected <factor>
-- In line: )
Jun 25, 2010 1:44 pm
probably because you aren’t coping whole script from “code” area and missing last “)” symbol.
1 Reply
ok,
i was wrong because I tried to run the script under maxscript listner.
Is possible save the Hierarchy of My Objects?
Jun 25, 2010 1:44 pm
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
)
)