Hi Dinos, re:
> That can be easily fixed if there is a way to set the STL export options to Ascii
> during export, but nothing that i tried worked.
That should be something like:
var OldSTLExportType = moi.settings.stlExportFileType;
moi.settings.stlExportFileType = 'Ascii';
<....>
// Reset original STL export type when finished.
moi.settings.stlExportFileType = OldSTLExportType;
- Michael
|