Adobe Flex 2 Language Reference - collected by Jimbob | Back to MY RESOURCES


Packagemx.managers
Interfacepublic interface IToolTipManagerClient extends IFlexDisplayObject, IBitmapDrawable, IEventDispatcher
ImplementorsUIComponent, UITextField

Components that implement IToolTipManagerClient can have tooltips and must have a toolTip getter/setter. The ToolTipManager class manages showing and hiding the tooltip on behalf of any component which is an IToolTipManagerClient.

See also

mx.controls.ToolTip
mx.managers.ToolTipManager
mx.core.IToolTip


Public Properties
 PropertyDefined by
 Inheritedalpha : Number
The transparency of this object.
IFlexDisplayObject
 Inheritedheight : Number
The height of this object, in pixels.
IFlexDisplayObject
 Inheritedmask : DisplayObject
The DisplayObject used to mask this object so that only part of it is actually drawn.
IFlexDisplayObject
 InheritedmeasuredHeight : Number
The measured height of this object.
IFlexDisplayObject
 InheritedmeasuredWidth : Number
The measured width of this object.
IFlexDisplayObject
 Inheritedname : String
The instance name of this object.
IFlexDisplayObject
 Inheritedparent : DisplayObjectContainer
The parent of this object.
IFlexDisplayObject
 InheritedscaleX : Number
The horizontal scaling factor for this object.
IFlexDisplayObject
 InheritedscaleY : Number
The vertical scaling factor for this object.
IFlexDisplayObject
  toolTip : String
The text of this component's tooltip.
IToolTipManagerClient
 Inheritedvisible : Boolean
A flag that indicates whether this object is visible.
IFlexDisplayObject
 Inheritedwidth : Number
The width of this object, in pixels.
IFlexDisplayObject
 Inheritedx : Number
The horizontal position of this object relative to its parent, in pixel coordinates.
IFlexDisplayObject
 Inheritedy : Number
The vertical position of this object relative to its parent, in pixel coordinates.
IFlexDisplayObject
Public Methods
 MethodDefined by
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
IEventDispatcher
 Inherited
Dispatches an event into the event flow.
IEventDispatcher
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
IEventDispatcher
 Inherited
move(x:Number, y:Number):void
Moves this object to the specified x and y coordinates.
IFlexDisplayObject
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
IEventDispatcher
 Inherited
setActualSize(newWidth:Number, newHeight:Number):void
Sets the actual size of this object.
IFlexDisplayObject
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
IEventDispatcher
Property detail
toolTipproperty
toolTip:String  [read-write]

The text of this component's tooltip.

Implementation
    public function get toolTip():String
    public function set toolTip(value:String):void





collected by Jimbob 2007.05