Export multiple parts

 From:  Michael Gibson
8582.3 In reply to 8582.2 
Hi Mik,

> It would be perfect to find standard Export dialog window after selecting parts and run
> the script, where it can be chose save location and format.

The problem here is the standard Export dialog window is focused on picking a file name. But this script doesn't write to a single file name, it uses object names as the file names. So if the standard Export dialog was to be shown, the name you entered in there would not actually be used.

For additional formats, I think if you modify the list in ExportParts.htm it should work. It currently has this:

code:
	<option value=".3dm">3dm</option>
	<option value=".stl">stl</option>
	<option value=".obj">obj</option>


Try adding to that list like if you want STEP and IGES formats put it in like this:
code:
	<option value=".3dm">3dm</option>
	<option value=".stl">stl</option>
	<option value=".obj">obj</option>
	<option value=".stp">STEP</option>
	<option value=".igs">IGES</option>


- Michael