Alias to select all objects from 2 different layers

Hi!

I’m trying to make an alias that would select all objects from 2 different layers, and project curves to the Cplane. This would be used for keeping organized while drawing CAD/CAM toolpaths.

I have this alias, “ProjecttoCplane Y” that I use already, but I have to select all the objects on the layers first. Can I automate this to select all the objects on 2 different layers and project to the cplane?

Thanks.

assuming the layers are identified by name
(Layer 01 and Layer 02 in this case)

_selNone -_selLayer "Layer 01" -_selLayer "Layer 02" _projectToCPlane _Yes
1 Like

Exactly what I needed thanks!