The script for chain

 From:  Michael Gibson
6087.51 In reply to 6087.50 
Hi Brian, re: rigid not working -

The factory is expecting a boolean true/false property for that parameter, not a string, so change:

factory.setInput( 5, 'rigid' );

to instead be:

factory.setInput( 5, true );


If you see in the UI that it's using a checkbox control hooked into the property, that's going to give a true/false value out of it.

- Michael