// shared actionscript/javascript config information // for the tooltip script var TT_CONF = { flash_file: 'tooltip.swf', // the flash tooltip file text_pad: 5, // the padding (of one side) of the text in the tooltip rect_radius: 5, // the radius of the rectangle, if there's a rect radius, this should be >= to it opacity: 90, // the opacity (alpha) of the tooltip background_color: 0xFFCC00, // the fill color of the tooltip box font_color: 0x000000, // the font color of the tooltip text font_face: 'Arial', // the font face of the tooltip text font_size: 12, // the font size of the tooltip text in points (not pixels) text_align: 'left', // the text alignment in the tooltip offset_mouse: 10, // number of pixels to offset the tooltip from the mouse position when the trigger is hovered min_text_height: 16, // this doesn't include padding, padding is added on. If font size is changed, so should this. min_text_width: 100 // somewhat arbitrary number };