Batch file conversion

 From:  Michael Gibson
2100.6 In reply to 2100.4 
Hi John,

> gd.saveAs( OBJFileName, 'NoUI=true' );'Angle=3.0'

The way it works is that you glue those options together all within the same '    ' quotes, putting semi-colons in between them, like this:


gd.saveAs( OBJFileName, 'NoUI=true;Angle=3.0' );


Everything between '    ' quotes is considered to be one string object - the options should be one string that has semi-colons in between the different individual options.


Another example with more parameters:


gd.saveAs( OBJFileName, 'NoUI=true;Angle=3.0;Weld=true;MaxLength=4;Output=quads' );


Also another note on the options - in the comments there are some things that are listed as separated by an | - that means "or", so you should only use one of those in those case. Like for instance the description of Output is like this:
// Output=ngons | quads | triangles
That means you can have one of Output=ngons or Output=quads or Output=triangles
Don't put in the actual | character for those ones.


Hopefully that will get you all set up?

- Michael

EDITED: 20 Oct 2008 by MICHAEL GIBSON