Components Flex



    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark">
    
        
    

     
         
        import mx.controls.ToolTip; 
        import mx.managers.ToolTipManager; 
        private var errorTip:ToolTip; 
        private var myError:String; 
        private function validateEntry(type:String, event:Object):void { 
            if (errorTip) { 
                resetApp(); 
            } 
            // NOTE: Validation logic would go here. 
            switch(type) { 
                case "ssn": 
                    myError="Use SSN format (NNN-NN-NNNN)"; 
                    break; 
                case "phone": 
                    myError="Use phone format (NNN-NNN-NNNN)"; 
                    break; 
            } 
            // Use the target's x and y positions to set position of error tip. 
            trace("event.currentTarget.width" + event.currentTarget.width); 
            trace("event.currentTarget.x" + event.currentTarget.x); 
            errorTip = ToolTipManager.createToolTip(myError, event.currentTarget.x + event.currentTarget.width, event.currentTarget.y)as ToolTip; 
            // Apply the errorTip class selector. 
            errorTip.setStyle("styleName", "errorTip"); 
        } 
        private function resetApp():void { 
            if (errorTip) { 
                ToolTipManager.destroyToolTip(errorTip); 
                errorTip = null; 
            } 
        }