var fDesc=new Array(); fDesc[0] = "AutoHook is a tiny Windows tray application that "Hooks" onto AutoCAD keyboard and mouse input. If AutoHook detects a key-press or mouse-click that has an assigned macro, the macro is sent to AutoCAD.
AutoHook was created for those who are too lazy to type commands and their options into AutoCAD.
Sample macros are provided, but the real power is through your own customization. Download a free evaluation copy for your version of AutoCAD today and watch your productivity soar!"; 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 = ''; } }