Hi,
I need my script to loop through the selected objects in the scene and return their name.
I can get the count from selection.count, but I'm stuck there. Please help! :D
Forum topic · General Scripting
By DaveG · 2009-12-01
Hi,
I need my script to loop through the selected objects in the scene and return their name.
I can get the count from selection.count, but I'm stuck there. Please help! :D
DaveG · 2009-12-01
It works great! Thanks so much. :)
DaveG · 2009-12-01
Thanks, I'll give it a go. :)
for i=1 to selection.count
le1setreter · 2009-12-01
for i=1 to selection.count do (
-- for every object do (print object name)
print selection[i].name
)