05
Sep
07

Setting a Flex tool tip’s maximum width

The following example shows how you can use the ToolTip.maxWidth property in Flex to control the maximum width of a tool tip.

Full code after the jump.

View MXML

<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2007/09/05/setting-a-flex-tool-tips-maximum-width/ -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        backgroundColor="white">

    <mx:Script>
        <![CDATA[
            import mx.controls.ToolTip;
        ]]>
    </mx:Script>

    <mx:ApplicationControlBar dock="true">
        <mx:Label text="ToolTip.maxWidth:" />
        <mx:HSlider id="slider"
                minimum="50"
                maximum="300"
                value="{ToolTip.maxWidth}"
                liveDragging="true"
                snapInterval="5"
                tickInterval="10"
                dataTipPrecision="0"
                change="ToolTip.maxWidth = slider.value" />
        <mx:Label text="{slider.value}" />
    </mx:ApplicationControlBar>

    <mx:Button label="Roll over to see tool tip"
            toolTip="The quick brown fox jumped over the lazy dog." />

</mx:Application>

View source is enabled in the following example.


1 Response to “Setting a Flex tool tip's maximum width”


  1. 1 ziki Sep 30th, 2007 at 7:00 am

    As i understand, this will change the size of all the tool tips in the program.
    is there a way to change this settings just for one tool tip?

Leave a Reply

This blog is terrible at eating HTML tags. If you plan on posting code/XML, please escape your "<" characters as "&lt;" and your ">" characters as "&gt;".