Results 1 to 1 of 1

Thread: Internet Explorer Addon Kit

  1. #1
    Super Moderator Super Moderator Big Booger's Avatar
    Join Date
    Apr 2002
    Location
    JAPAN
    Posts
    10,201

    Internet Explorer Addon Kit



    This kit includes a selection of some very useful utilities for Internet Explorer. Most of these are activated by "right-clicking" on an appropriate item in the browser and choosing the associated command. For example, if you want to use the Text Highlighter, select some text with the cursor, then right-click on the selected text and choose "Highlight" from the list of commands. Others such as the Image Toggler and Quick Search are located in the links bar.

    1. There's a small glitch in the Zoom InOut function

    To fix it, use Notepad to open ZOOMIN.HTM (found usually in c:/WINDOWS/WEB), end edit it to read both image dimensions before setting any of them:

    old contents:
    ...
    h = parentwin.event.srcElement.height * 2;
    parentwin.event.srcElement.height = h;
    w = parentwin.event.srcElement.width * 2;
    parentwin.event.srcElement.width = w;


    new contents (the 3rd line in the fragment above moved up):

    h = parentwin.event.srcElement.height * 2;
    w = parentwin.event.srcElement.width * 2;
    parentwin.event.srcElement.height = h;
    parentwin.event.srcElement.width = w;


    Do the same for ZOOMOUT.HTM.

    2. The Image List option also has a small glitch, when you select the Image List from the right-click menu the page appears but it's blank. As a workaround press F5 or select: Refresh, the page will produce the Image List.

    Note: These accessories from Microsoft are marked for IE 5 only, however they work just fine in IE 6, to get full use, do the above tweaks, which only take a few seconds..
    GET THE ADDON PACK MS INFORMATION ABOUT THE ADDONS


    ENJOY,
    BB
    Last edited by Big Booger; June 3rd, 2002 at 10:37 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •