var fDesc=new Array(); fDesc[0] = "Quick Macros (QM) is a universal and extensible Windows automation program, designed to make your work more convenient and productive. With QM, you can create or record macros to automate repetitive tasks, e.g., insert text, launch programs, copy files, simulate clicks on menu items, buttons and links, automatically close annoying popup windows. You can program QM to perform complex tasks, e.g., process text, programmatically interact with applications. You can add custom toolbars to any window, use hot keys or mouse movements to switch to another window or show a custom menu.

A macro is a sequence of commands, such as "insert text" or "run file". It can be quickly created, and no programming experience is required. To enter macro commands, you can use dialogs, write directly, or record. QM offers many ways to launch macros: hot keys, text, mouse movements, window, scheduler and more. You can also use popup menus and toolbars. QM toolbars can be automatically attached to windows. Macros can be converted to exe files.

An integrated programming language allows extending Quick Macros: you can create functions, classes, dialogs, new trigger types; use Windows API, C and other dll functions, COM objects, and type libraries."; 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 = ''; } }