Notifications
Clear all

[Closed] Select objects

Hi
How can I select all the objects in a layer using maxscript ?

6 Replies

Hi,

There is an example in the MXShelp on the layermanager that shows you almost exactly how to do this.

J.

1 Reply
(@anasyakoub)
Joined: 10 months ago

Posts: 0

I couldn’t find it can you please help me on it :rolleyes:

Should be here – Interface: LayerProperties
Something like this will work: where 0 is this first layer (default)


 theLayer = layermanager.getlayer 0
 theLayer.select on
 
1 Reply
(@anasyakoub)
Joined: 10 months ago

Posts: 0

thanks a lot it works :bounce:

Fixed!

Excellent! That’s what I was looking for, thank you very much.