Notifications
Clear all
[Closed] All Layers
Jan 03, 2008 11:40 am
Hi,
How to get all Layer names from Layer editor through Max Script.
ThanX.
4 Replies
1 Reply
I just responded to another thread asking a simular question…
for i = 0 to LayerManager.count - 1 do (
format "%
" (LayerManager.getLayer i)
)
Shane
1 Reply
Sorry, but did you even take a look at the docs…because…
format "%
" ((LayerManager.getLayer i).name)
should…
edt: note the “.name” at the end of the line…