Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I can select clusters, sure! Can't seem to find a way to select all cluster Handles in a scene! 😕
Thanks.
Solved! Go to Solution.
I can select clusters, sure! Can't seem to find a way to select all cluster Handles in a scene! 😕
Thanks.
Solved! Go to Solution.
For a MEL command, this should work:
$allClusters = `ls -exactType "cluster"`;
select -cl;
for($cluster in $allClusters)
{
$clusterTransform = `listConnections -t transform $cluster`;
select -add $clusterTransform;
}Another option is to go Select>All by Type>Clusters, but if you need it MEL based, the above should work!