Reading long tooltips in Firefox

Official site news [DEPRECATED]

Moderators: Moderators General, Prelates

Reading long tooltips in Firefox

Postby xkcd » Mon Aug 07, 2006 5:40 pm UTC

Because of Mozilla Bug #45375, when you mouse over images with title-text, you can't always read it all -- it trunchates instead of wrapping. Since Firefox has had this problem for years, a whole bunch of people have gotten fed up and written extensions.

I don't really know who you bother at Mozilla to get this fixed, but in the webcomic community we've just given up and we all install the Long Titles extension.

So if you want to read the title-text on the comics in Firefox, that's where you should go.

edit: Replaced HTML with BBCode, oops.
Last edited by xkcd on Tue Aug 08, 2006 12:50 am UTC, edited 1 time in total.
User avatar
xkcd
Site Ninja
 
Posts: 365
Joined: Sat Apr 08, 2006 8:03 am UTC

Postby Jesse » Mon Aug 07, 2006 6:39 pm UTC

Ah, I just right-click then Properties and highlight the text, copy it into Notepad and read it there.
User avatar
Jesse
Vocal Terrorist
 
Posts: 8533
Joined: Mon Jul 03, 2006 6:33 pm UTC
Location: Blackpool, England.

Postby Penguin » Mon Aug 07, 2006 8:31 pm UTC

Silly xkcd, you of all people should know that you have to use bbcode and not html on your own forums!
<3!
Penguin
 
Posts: 98
Joined: Wed Jul 05, 2006 2:54 pm UTC
Location: Cambridge, MA

Postby Jesse » Mon Aug 07, 2006 8:54 pm UTC

I expect most of that was a copy and paste job, unless he did just forget it was BBCode.
User avatar
Jesse
Vocal Terrorist
 
Posts: 8533
Joined: Mon Jul 03, 2006 6:33 pm UTC
Location: Blackpool, England.

Re: Reading long tooltips in Firefox

Postby Guest » Mon Aug 07, 2006 10:35 pm UTC

xkcd wrote:Because of <a href="http://www.ccs.neu.edu/home/bcortez/mozilla_tests/bug_45375.htm">Mozilla Bug #45375</a>, when you mouse over images with title-text, you can't always read it all -- it trunchates instead of wrapping. Since Firefox has had this problem for years, a whole bunch of people have gotten fed up and written extensions.

I don't really know who you <a href="http://www.mozilla.org/quality/bug-writing-guidelines.html">bother at Mozilla</a> to get this fixed, but in the webcomic community we've just given up and we all install the <a href="https://addons.mozilla.org/firefox/1715/">Long Titles extension</a>.

So if you want to read the title-text on the comics in Firefox, that's where you should go.

Alternatively, if you have the Greasemonkey extension, there's a script to do multiline tooltips.
Guest
 

Alternatively

Postby benkarel » Sun Sep 24, 2006 4:15 pm UTC

For other greasy monkies out there, you could take the REALLY lazy route and use a greasemonkey script to yank the title and stick it below the comic for easy-peasy viewing.

Like this one:

Code: Select all
// ==UserScript==
// @name       xkcd.com titler
// @namespace     http://xkcd.com/
// @description    Writes out comic titles on xkcd.com
// @include    http://xkcd.com/*
// @include   http://www.xkcd.com/*
// ==/UserScript==
//
// By Ben Karel <web@eschew.org>

(function() {
   var imgs = document.getElementsByTagName('img');
   var img = imgs.item(1);
   var titleText = img.getAttribute('title');
   var titleNode = document.createTextNode(titleText);
   var p = document.createElement('p');
   p.appendChild(titleNode);
   p.setAttribute('style', 'font-size: 75%; width: 500px;');
   img.parentNode.insertBefore(p, img.nextSibling.nextSibling);
})();


(Copy and paste into this helpful page for fast importing)
benkarel
 
Posts: 1
Joined: Sun Sep 24, 2006 4:11 pm UTC

Postby Shoofle » Sun Sep 24, 2006 5:20 pm UTC

Looks nifty - I should find out about scripts and how to use them and stuff.
User avatar
Shoofle
 
Posts: 409
Joined: Sun Apr 09, 2006 9:28 pm UTC
Location: Location, Location.

Postby MightyMouse » Fri Sep 29, 2006 3:03 pm UTC

I actually thought for ages that the ellipses were deliberate. How foolish do I feel?
MightyMouse
 
Posts: 48
Joined: Tue Sep 19, 2006 12:06 pm UTC

Postby davean » Fri Sep 29, 2006 9:17 pm UTC

MightyMouse wrote:I actually thought for ages that the ellipses were deliberate. How foolish do I feel?


Very.
User avatar
davean
Site Ninja
 
Posts: 2410
Joined: Sat Apr 08, 2006 7:50 am UTC

Postby Tropylium » Tue Oct 03, 2006 9:08 pm UTC

OTOH at least Josh Lesnick has used deliberate ellipses on a few occasions…
Tropylium
 
Posts: 127
Joined: Tue Jul 25, 2006 9:40 am UTC
Location: Finland

Postby sneakums » Tue Oct 24, 2006 10:33 am UTC

I just did the obvious thing and wrote a custom RSS feed generator.
User avatar
sneakums
 
Posts: 1
Joined: Tue Oct 24, 2006 10:29 am UTC

Postby Peshmerga » Tue Oct 24, 2006 8:31 pm UTC

sneakums wrote:I just did the obvious thing and wrote a custom RSS feed generator.


Y of course.

Duh. D:
i hurd u liek mudkips???
User avatar
Peshmerga
Mad Hatter
 
Posts: 2061
Joined: Wed Oct 04, 2006 1:56 am UTC

Postby Hamorad » Sat Oct 28, 2006 10:28 pm UTC

I usually just go right click->properties and read it in there if it's too long...
User avatar
Hamorad
 
Posts: 105
Joined: Fri Sep 29, 2006 7:14 pm UTC


Return to News

Who is online

Users browsing this forum: No registered users and 0 guests