QUOTE
QUOTE
Dang, that reminds me, I told someone ages ago that I would upload corrected copies of some Microsoft unsupported tools originally released for IE5.5 that actually still work just fine under IE7 .. along with installation instructions .... one of those was a "view partial source" utility ....
So what are the utilities and where can they be found?
I closed down a ton-load of opened windows, opened up a boat-load of new ones ....
Where they are at .. actually funny as most of the Google links, (including the top-ranked page which points directly to a Microsoft listing) which go to other places that list the same links, all currently return a 404 as Microsoft has rearranged things for the zillionth time ... in this case no doubt due to these tools being originally posted for IE5.5 .... ages ago ... so had to come up with other seaches in hopes that the pages hadn't actually been deleted ...
Currently found at : Web Accessories for Internet Explorer 5
Multiple tools listed, a number of them will not fly with the IE of today .... such as the Toolbar stuff.
On the other hand, there are a couple of tools that I use there that actually work just fine under Win-XP, both Home and Pro, and both IE6 and IE7.
Microsoft Web Developer Accessories - includes the mentioned "view partial source" tool ....
Download is currently at webdevaccess.exe ... download, install, and it's ready to go .. new options available under the Tools menu and in the right-click menu.
The other 'set' of tools that I use is found under the "Internet Explorer 5 Web Accessories" section ... This file is currently found at ie5wa.exe Once again, download, install, and almost all of them work just fine. However, living up to the "unsupported by Microsoft" disclaimer, the Zoom-in, Zoom-out have been screwed since the release of these files .... to fix, the two HTML files need to be edited, basically swapping the order of a couple of the lines. As I do not recall the way they are installed, I'm just posting the working end result files here ...
Files are typically located at C:/Windows/web .... your install may vary .. used Find/Search for files to locate them ...
zoomin.htm should look like;
CODE
<HTML>
<scri_pt LANGUAGE="java scri_pt" defer>
var parentwin = external.menuArguments;
var doc = parentwin.document;
var w;
var h;
if ( parentwin.event.srcElement.tagName == "IMG" )
{
h = parentwin.event.srcElement.height * 2;
w = parentwin.event.srcElement.width * 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;
}
else
alert ("You must right-click on an image to Zoom.");
</scri_pt>
</HTML>
<scri_pt LANGUAGE="java scri_pt" defer>
var parentwin = external.menuArguments;
var doc = parentwin.document;
var w;
var h;
if ( parentwin.event.srcElement.tagName == "IMG" )
{
h = parentwin.event.srcElement.height * 2;
w = parentwin.event.srcElement.width * 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;
}
else
alert ("You must right-click on an image to Zoom.");
</scri_pt>
</HTML>
zoomout.htm should look like;
CODE
<HTML>
<scri_pt LANGUAGE="java scri_pt" defer>
var parentwin = external.menuArguments;
var doc = parentwin.document;
var w;
var h;
if ( parentwin.event.srcElement.tagName == "IMG" )
{
h = parentwin.event.srcElement.height / 2;
w = parentwin.event.srcElement.width / 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;
}
else
alert ("You must right-click on an image to Zoom.");
</scri_pt>
</HTML>
<scri_pt LANGUAGE="java scri_pt" defer>
var parentwin = external.menuArguments;
var doc = parentwin.document;
var w;
var h;
if ( parentwin.event.srcElement.tagName == "IMG" )
{
h = parentwin.event.srcElement.height / 2;
w = parentwin.event.srcElement.width / 2;
parentwin.event.srcElement.height = h;
parentwin.event.srcElement.width = w;
}
else
alert ("You must right-click on an image to Zoom.");
</scri_pt>
</HTML>
NOTE: this Forum application has been modified to change the spelling/format of the words J A V A S C R I P T and S C R I P T.... you need to 'fix' that before saving the corrected file. (delete the underscore, remove the extra space)
Oh yeah, for those that don't already have other system configurations in place ... when you "find" these files, you need to use "Open With .." ... select NotePad to use for the editing tool. Do not use Word, WordPad, etc ... just plain old NotePad ..... either make the changes yourself by moving the lines around or cut/paste the contents here to replace the existing code ... Save the resulting file ....
I have used these (corrected) tools under IE5 through IE7, under Win-98, 98SE, XP-Home, XP-Pro without issue.