Hello Leif, LW> We are trying to get a tool tip to work with a DataGrid component. And failing.
You can try ageyev.tools.ToolTip class from my project MXML2UI (http://ageyev.ru/mxml2ui). But it works with the whole component DataGrid, instead of with its separate elements. Soon I should let out new release. Changes to touch ToolTip class too. Better wait changes;) ********* This example works ************ <?xml version="1.0"?> <mx:Application> <mx:DataGrid toolTip='message' width="285" height="196"> <mx:dataProvider> <Array> <item second='World' first='Hello' /> <item second='World' first='Hello' /> </Array> </mx:dataProvider> </mx:DataGrid> </mx:Application> ****************************************** -- Best regards, Igor mailto:[EMAIL PROTECTED] _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

