var fDesc=new Array(); fDesc[0] = "Rooler is a set of utilities for pixel-perfect analysis and measurement of graphics. It was created for designers to aid common tasks such as redlining and analysis of layouts. Rooler uses the on-screen graphics and can be used for any graphics- from static images to HTML in your browser to the UI of a running application. Rooler was originally inspired by the excellent OSX-only application xScope.

You can easily determine sizing and spacing using the dimensions tool. This tool finds the nearest edge in all directions from the mouse cursor and can quickly let you measure the spacing between graphics. With adjustable tolerances and smart handling of gradients the dimensions tool works over a wide variety of graphics.

It automatically finds the area of graphics- great for measuring everything from the size of an icon to the dimensions of a dialog. Just draw a rough rectangle around the visual to be measured and the bounds tool will collapse it down to precisely fit.

The adjustable magnifying glass also provides mouse location and pixel colors and detailed measurements. It is helpful for quickly analyzing graphics.

An experimental screen capture utility works similar to the Bounds tool but captures the final contents to the clipboard. It is great for capturing precisely sized contents to the clipboard without having to trim the graphics later."; 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 = ''; } }