Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All
Good day
There is 3ds max script for select object by any information in user Defined properties ?
Solved! Go to Solution.
Hi All
Good day
There is 3ds max script for select object by any information in user Defined properties ?
Solved! Go to Solution.
With proper user properties, yes. For example (property name is case sensitive):
select (for obj in objects where getUserProp obj "COLOR" == 123 collect obj)
Note that it won't work in your case since you use colon instead of equal sign for the value assignment in the user properties. The name value would also need quotes to be treated as string.