var fDesc=new Array(); fDesc[0] = "MDXEdit is the extendable CNC editor with the tools designed for the needs of NC programmers. MDXEdit includes all of these standard features:
- Plain text and rich text editing and file formats
- Standard editing commands: Undo, Cut, Copy, Paste, Find, Replace
- Change font, style, or color to high-light problem lines and mail to technical support
- Automation support for embedding objects such as pictures along with the NC Code
- Automation support for embedding in Word or other programs
- G-Check color coding NC Code checker, with cutter comp on/off matching
- G-Sequencer regenerates program sequence numbers
- G-Plot graphical display of 2.5D milling tool path
- G-Download to send program to the controller over serial port
- G-Upload to receive programs from the controller over serial port
- G-Feed And Speed plug-in to change feed rates and/or spindle speeds
- G-Compact to remove comments, spaces, and/or sequence numbers to reduce file size
- G-Spacer to add spaces to increase readability
- Lathe G-Plot graphical display of generic lathe tool path
- G-Tool Use calculation of program rapid and feed distance and time
- G-Split divides surface files too large to download all at once into smaller programs of user specified size
- Plug-in style tools menu means extensions are easily added at any time
- Non-standard machine code plug-ins can be specialized for any machine"; 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 = ''; } }