Saving multiple ?

 From:  Michael Gibson
9105.10 In reply to 9105.9 
Hi Pilou, for saving to .3dm format go to line #42 where it is appending the .obj file extension:
code:
        var filename = g_dirname + name + '.obj';


And change it to append a .3dm file extension instead:

code:
        var filename = g_dirname + name + '.3dm';


- Michael