Hi,
Can changing layers be scripted based on a current selection, using common layer names.
Ie:
- Manual selection of objects
- Click macro / shift selection of objects to desired named layer
Input appreciated.
Will.
Hi,
Can changing layers be scripted based on a current selection, using common layer names.
Ie:
Input appreciated.
Will.
Yes.
For example, the macro -ChangeLayer curves
will move the selected objects to the layer called âcurvesâ.
thanks, ill give it a shot.
Thanks for tip, the layer is called âDrafting Lineâ it doesnt seem to act on two word labels? also, some of my layers are nested in sub layers, this doesnât seem to work, any clues how to make this work? Thanks.
To allow spaces in passed strings/names you should pass them encapsulated in double quotes:
-ChangeLayer "curves with space"
Does that Help?
-Willem
SubLayer syntax is as follows:
Layer::sublayer::sublayerâŚetc.
So:
-_ChangeLayer _Pause "Top Layer::Next Layer::Bottom Layer"
âMitch
Thanks, ill give it a crack asap. Cheers for that.