Hi shayne,
re:
> I add colour a lot of ring and setting parts gold or platinum and it would speed me up to assign a key to colours I use all the time
Here's a script that can be put on a shortcut key to assign selected objects to a particular style.
This one will assign to the style named Red, change the name 'Red' to the one you want to target.
script: /* Assign selected objects to this style */ var name = 'Red'; var style = moi.geometryDatabase.findStyle( name ); if ( style ) moi.geometryDatabase.getSelectedObjects().setProperty( 'styleIndex', style.index );
- Michael
|