Is there a script to export obj without the settings window?
James
Posts: 1,178
Is there a script to export obj without the settings window?
So it can just export immediately.
I think I'm going to export a lot of obj. So skipping the settings window will save a lot of time.

Comments
Yes, with silent mode: http://docs.daz3d.com/doku.php/public/software/dazstudio/4/referenceguide/scripting/api_reference/samples/file_io/export_obj_silent/start
Hemm... the settings dialogue box still open as usuall with this script
That's just the sample to give you all the codes at default. To make it as a silent mode without showing the OBJ export options dialogue, you just need to change the code of line 51 to: var bShowOptions = false;
If you further don't want it to show the dialogue to specify path + OBJ file name, you can hard code a path + file name in line 167 ~~
Is there silent scene save too?
YES, this sample shows how to save a scene with script plus an option of Silent Mode ~ https://docs.daz3d.com/public/software/dazstudio/4/referenceguide/scripting/api_reference/samples/file_io/save_duf_scene/start
thank you so much.