Mouseover Timer

I had a request to increase the timeout on the mouseover text. Could someone please provide some direction on how I could change this.
Thanks

Try putting a script like this in your Client Startup script:

from javax.swing import ToolTipManager ToolTipManager.sharedInstance().setInitialDelay(8000)

The [tt]8000[/tt] is the delay in milliseconds for the tooltip to be displayed. This example code would set it for 8 seconds.