Increase mouseover display time

I have some mouseover text displayed but the default time is too short to read it all. Is there a setting where this can be increased? Default seems to be about 5 seconds.

Also, is it possible to split the text from one long displayed string into shorter paragraphs?

OK so I have answered my second question, by using HTML in the text field. Still would like to increase the display time.

You can add the following code to your client start up script:

from javax.swing import ToolTipManager
ToolTipManager.sharedInstance().setDismissDelay(20000)

This will set the tool tips to stay up for 20 seconds but you can change it to whatever time you see fit.

Awesome, sorted, thanks.