Improvement requests :  K-Meleon Web Browser Forum
Use this forum to talk about a feature you're missing. 
Show picture option like IE and also make history available offline also
Posted by: Shaheryar
Date: January 15, 2004 03:21AM

Two Things are needed two make your your browse much efficent 1st is Offline history and second is show pictue button like IE

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: Iain
Date: January 15, 2004 06:38PM

Not quite sure what you mean about a "Show Picture" option, but if you right-click on any image the context menu gives you "View Image" which will open it in a new window.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: rjf
Date: February 06, 2004 08:45AM

I think what he/she means is that sometimes in a webpage, one, or two of the images will not load. On ie you can right-click it, and use the show image option, which I'm guessing reloads the individual image, as opposed to having to reload the entire page. It's a useful feature.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: rmn
Date: February 06, 2004 01:39PM

> On ie you can right-click it, and use the show image option, which I'm guessing reloads the individual image, as opposed to having to reload the entire page.

I don't think Mozilla & Firebird have it, so it's a Gecko problem. Pity, it's a very nice feature.

> make history available offline
Offline browsing can be forced if you select Edit --> Preferences --> Cache --> Cache comparison --> Never.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: fang
Date: April 16, 2004 07:07PM

it does have that feature in mozill firefox when you right click the image\view image

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: Al.
Date: April 18, 2004 09:03PM

Actually I thought the original poster was referring to a "Toggle Images" button like the one in IE.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: rmn
Date: April 19, 2004 10:53AM

BTW, it is reported that the current CVS version has offline browsing support.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: ra
Date: April 19, 2004 09:51PM

Does anyone know if the current win-embed-build of mozilla has a show picture option that we could hook up?

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: John Blink
Date: April 25, 2004 04:45AM

About the images.

I like how Opera has that button that specifies:
-Always load images
-Always load previously cached images only
-Don't load images

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: Bob
Date: July 01, 2004 02:41PM

Ditto those requests. Firebird does have an extension that is supposed to make individual images load by right clicking but I, and many others, can't get it to work.

Make it just like Netscape 4.XX with an "images" button on the "navigation toolbar" (click that and it loads all images on the page/frame when images are turned off in preferences) and a "Show Image" Which loads a right clicked image from the menu.

I still do most of my research using Netscape for that reason alone . . . It would be nice to chuck it entirely. And, lest someone ask, I am still using dialup; but would still use the image button to eliminate just having to look at a lot of crap advertising.

Make K -Meleon as useful as Netscape 4 . . .

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: NLB
Date: October 17, 2004 01:19AM

I also need the feature like IE's "show image" or Opera's "Load Image"

> Ditto those requests. Firebird does have an extension that is supposed to make
> individual images load by right clicking but I, and many others, can't get it to work.

Now it's possible for firefox to add "Load Image" feature by installing Image-Show-Hide-Load.

Thus, I guess it's possible to add this feature to K-meleon.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: guenter
Date: October 17, 2004 09:13AM

hm - did You have a look at the macros of k-m 0.9 or 0.8.2+ ?

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: Mikhail
Date: July 17, 2005 07:01AM

"Show Picture" from IE is the only real deficiency I've found in Firefox so far. They've really got to add that. It's a travesty that IE actually has ONE better feature than Firefox. winking smiley

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: kko
Date: July 17, 2005 11:01PM

IE's "Show image" option to reload a broken image is really a usefull feature. I have also frequently missed it in Mozilla and K-Meleon. As far as the latter is concerned, there's an easy way out:

1) Paste the following lines into your macros.cfg (I suggest somewhere in the "IMAGE & ZOOM MACROS" section)

# Force reload of a single image
ReloadImage{
Open("javascriptsad smileyfunction(){var t='".$ImageURL."',k=document.images;for(var j=0;j<k.length;j++)if(k[j].src==t){k[j].src="";k[j].src=t;}})()");
}

2) Paste the bold line into your menus.cfg (about line 800)

Image{
%ifplugin macros
macros(ZoomInImage, Zoom In Image)
macros(ZoomOutImage, Zoom Out Image)
-
%endif
&View Image = ID_VIEW_IMAGE
Copy Image = ID_COPY_IMAGE_CONTENT
Cop&y Image URL = ID_COPY_IMAGE_LOCATION
%ifplugin macros
macros(ReloadImage, Reload Image)
macros(SaveImage, Save Image As...)
macros(EmailImageURL, Send Image...)
macros(ImageCache, View Image Info)
macros(ImageInfo, Image Properties...)
%else
Save &Image As... = ID_SAVE_IMAGE_AS
%endif
}

3) Restart K-Meleon

As far as I've tested, it works...

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: kko
Date: July 18, 2005 05:42PM

Here is an updated version of my macro (it will now work with frames and with JavaScript disabled):

# Force reload of a single image
ReloadImage{
$macro="ReloadImg"; &JSEnable;
}
ReloadImg{
Open("javascript:function chkImg(e){var t='".$ImageURL."',i=e.document.images;for(var j=0;j<i.length;j++)if(i[j].src==t){i[j].src="";i[j].src=t;}}function chkFrm(e){var f=e.frames;for(var j=0;j<f.length;j++)chkFrm(f[j]);chkImg(e);}void(chkFrm(top));");
}

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: kko
Date: September 01, 2005 06:43PM

I have posted an updated version of my Reload Image macro to the wiki.

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: Fred
Date: September 04, 2005 01:34PM

The macro "Reload Image" works fine and it is a useful new feature.
Thank you.
Fred

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: Dean
Date: January 12, 2006 10:05PM

The show picture option doesn't always work for me. The drop down window that has show picture will act like it is reloading but I still get the little box with the little red x in it. Is there some security setting that needs to be changed?

Options: ReplyQuote
Re: Show picture option like IE and also make history available offline also
Posted by: kko
Date: January 13, 2006 11:14AM

Is there some security setting that needs to be changed?

No, Dean. My macro should work under all circumstances.

What you describe will happen, when the referenced image does not exist. A non-existing image of course can't be displayed, how often you may reload it...

Options: ReplyQuote


K-Meleon forum is powered by Phorum.