var fDesc=new Array(); fDesc[0] = "AeroZoom is a simple AutoHotKey program that enhances upon the new Magnifier in Windows 7 to turn any mouse into a presentation mouse, where zooming in/out and moving around becomes a breeze without a keyboard.

List of Features

- Binding keyboard controls commonly used in a presentation to mouse buttons and 'AeroZoom panel' buttons (on the right).
- Zooming in/out or reset any time without a keyboard; handle more operations with one hand.
- AeroZoom panel is made of large buttons designed to quickly toggle sub-magnifier settings (It only needs 1 click while Magnifier needs 3 for those settings.) or to add more functionalities. Upon calling by mouse buttons, it pops up where the cursor is, without the need to locate the Magnifier window minimized in taskbar.
- [Show], [Kill] and [Reset] buttons restore a hidden Magnifier, stop the magnifier process and apply default settings; [Draw], [Type] and [Calc] buttons run Snipping Tool, WordPad and Calculator respectively.
- Comes with an alternative executable for lefthanders.
- Portable. Writes per-user settings to registry.
- Open source. Written with AutoHotKey.
- Works better with a wireless mouse.
- Fast and smooth thanks to Windows 7 having greatly improved its Magnifier.
- (Being an enhancement to the new Magnifier, it requires a system newer than XP and Vista)"; 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 = ''; } }