I had a try with a Bookmarklet from
www.sam-i-am.com a webpage owned by Sam Foster.
Quote:
Zoom In, Zoom Out
compatible: IE 5.5, Win32
This pair will zoom in/out the current page in 50% increments. Great for pixel level debugging and using with Element Ancestry to click on exactly the element/screen are you are interested in.
The scripts add/modify a style attribute to acheive the zooming. Thanks to Adrian Cotter for his improvements and doing the zoom out.
Included in an AHK script: F1 = Zoom In / F6 = Zoom Out
Code:
F6::
BM = javascript:void(s=document.body.style);void(z=s.getAttribute('zoom'));if(z){s.setAttribute('zoom'`,(parseInt(z)-50)+'`%');}else s.setAttribute('zoom'`,'50`%');
Goto, ScaleIt
F1::
BM = javascript:void(s=document.body.style);void(z=s.getAttribute('zoom'));if(z){s.setAttribute('zoom'`,(parseInt(z)+50)+'`%');}else s.setAttribute('zoom'`,'150`%');
ScaleIt:
WinActivate, Google-Suche
ControlFocus, Edit2, Microsoft Internet Explorer
ControlSetText, Edit2, %BM%, Microsoft Internet Explorer
Send, {ENTER}
Return
Worked fine.
