The script needed to be modified. I'm attaching the new balloontip.js file in a .zip file. You will need these two new images:
Attachment 622 a Attachment 623
and the new balloontip.js file contained in:
Attachment 627
The configuration in balloontip.js has changed:
Code:
var disappeardelay=250 //tooltip disappear delay (in miliseconds)
var verticaloffset=0 //added vertical offset of tooltip from anchor link, if any
var horizontaloffset=0 //added horizontal offset of tooltip from anchor link, if any
var enablearrowhead=2 //0, 1, or 2 - to disable(0) or enable the top(1) or side(2) arrow image
var arrowheadimg=["arrowdown.gif", "arrowup.gif", "arrowleft.gif", "arrowright.gif"] //path to down and up left and right arrow images
var arrowheadsize=11 //size of arrow image (amount to reveal)
As you can see, you will still need the up and down arrow images available to the script. What was arrowheadheight, is now arrowheadsize and will work for either a side or top oriented arrow. Using enablearrowhead=2 will institute the rightward orientation of the tip as well as select the appropriate left or right arrow. The added horizontaloffset is for any minor horizontal adjustment and is active in all modes, just like the old and active in all modes verticaloffset. The defaults of 0 for each of these should be fine in most cases. Due to the way the arrows get displayed, some height may get added to the tip. If you do not want this, simply create left and right arrows that are less tall, the script will adjust to them. Otherwise, the configuration is the same as before.
Bookmarks