A quick (and dirty) Script Palette script

 From:  Andrei Samardac
5993.24 
Why I can not to have this script correctly shown in window?

script: /*! Show all except curves, points and Hidden style*/ var obj = moi.geometryDatabase.getObjects().getBReps(), st = moi.geometryDatabase.findstyle("Hidden",0), sti; if (st) {sti = st.index;} else { sti = "nf";} for ( var o = 0; o < obj.length; ++o ) { if ( obj.item(o).hidden && obj.item(o).styleIndex !== sti) { obj.item(o).hidden = false; obj.item(o).selected = false; }};


In script window it looks like this:

< obj.length; ++o ) { if ( obj.item(o).hidden && obj.item(o).styleIndex !== sti) { obj.item(o).hidden = false; obj.item(o).selected = false; }};"> Show all except curves, points and Hidden style

Looks like it becouse <.