views:

521

answers:

2

How can I make the tootip/flyover of the tabs appear faster? There is too much reaction time, it takes ages to look through many of them.

I have most of the time 100 tabs open in Firefox (I am using the tab mix plus addon - "tmp").

To see what's in the different browser windows I do not activate them, but I just move the mouse over the tabs.

After some milliseconds a tooltip/flyover appears (a little box at the mouse pointer is drawn above everything below) and it contains information from the header of the web page that belongs to the tab. But there is a pause of some milliseconds before they are shown.

If there is not a specific about:config variable I would also be interested how to change firefox code (as I assume this is not built into tmp, I didn't find it in the options)

I do not use the tmp feature "select tab by pointing after xxx ms", which could probably interfere.

Thank You

Karl

+2  A: 

The tooltip delay variable isn't in Firefox's about:config because it is a system-wide variable. If you are using OS X you can change it using these commands in terminal:

// make the change global (applies to all apps)
defaults write -g NSInitialToolTipDelay -int 500 

// just for firefox
defaults write org.mozilla.firefox NSInitialToolTipDelay -int 500

I don't know how this can be done under windows. (maybe a registry key or something

EDIT: I just found this / wikipedia. Maybe you can give it a try?

andi
Thank you, it is really an insight for me that this setting is system-wide. If no one tells me the registry setting I will have to install the powertoys/tweakui, although I'd prefer to do it myself
Karl Thorwald
A: 

I believe that Tweak UI from Microsoft PowerToys has a setting to change this on Windows. Look for the download on the right of the page about halfway down.

Matt