new beta-stealth mode

 From:  Michael Gibson
2703.14 In reply to 2703.13 
Hi Burr, yeah possibly something not right with multiple lines.

Please give this one a try:
code:
script: /* Show length of current curve being drawn */ try { moi.ui.commandUI.setInterval( 'var crvs = moi.geometryDatabase.getObjects().getCurves(); var len = 0.0; if ( crvs.length > 0 ) { len = crvs.item(crvs.length-1).getLength(); } if ( !window["_crvdistlabel"] ) { document.body.insertAdjacentHTML( "beforeEnd", "<div id=_crvdistlabel></div>" ); } _crvdistlabel.innerText = len.toFixed(4);', 250 ); } catch(e) {}


Depending on your web browser, you can probably double or triple-click
the above single line to get it all as a single line easily.

Does that work better?

- Michael