STL import caoability?

 From:  Michael Gibson
8823.9 In reply to 8823.7 
Hi Ralf,

> with the new beta v4 on Mac i have several Errors with the script from your link..

It has a syntax error that used to be tolerated in older MoI versions. It's just a one character fix though:

P_ImportSTL.htm, line 11 - change ending comma to semicolon:

Current:
code:
var x, y, z, //max={ x:-100000, y:-100000, z:-100000 }, min={ x:100000, y:100000, z:100000 };

Fixed:
code:
var x, y, z; //max={ x:-100000, y:-100000, z:-100000 }, min={ x:100000, y:100000, z:100000 };


I don't seem to get the other error using the last .htm file from later in the thread.

- Michael