var fDesc=new Array(); fDesc[0] = "This software is a user friendly front end for skeinforge. It generates g-code from .stl files to run your machine. ( MS Windows only)
The G-code screen allows viewing of the G-code you have just processed or any G-code files previously processed Using the slider on the right hand side of the screen you are able scroll up and down the build, looking at the tool paths for each layer. You are also able to rotate the object by clicking and holding the left mouse button, move the object around the screen by clicking and holding the right mouse button and zoom in and out on the object by rolling the mouse wheel."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }