var fDesc=new Array(); fDesc[0] = "EZCommander allows you to send commands to your EZSteppers or EZServos with a single click. Commands strings are entered in the text boxes and sent by clicking on the "Send String" button. You can easily save and store groups of strings.

You can also record sequences of commands by clicking the record button and then the appropriate "Send String" buttons in their proper order.
When you click the "Playback" button, your commands will be sent in the order and with the same timing as you entered them."; 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 = ''; } }