Notifications
Clear all

[Closed] select many objects

hi, how select many objects in the scene ?
if i write:

select $Box01;
select $Box02;

i have only Box02 selected …and i want both (with mouse we can use Ctrl) …it is posible from maxscript command ?
thx

3 Replies

i believe this would work…


select $Box01
selectmore $Box02

hope it helps:)

EDIT: no worries erilaz:thumbsup:

There are multiple ways to do this. Try these:

1. You can use selectMore to add to a current selection, eg:
select $Box01
  selectMore $Box02
2. Use an array:
select #($Box01, $Box02)

EDIT: Sorry galagast, missed your post while I was doing mine!

thanks