Components Flex



    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx">
    
         
        import mx.controls.Alert; 
        import mx.events.CloseEvent; 
        [Embed(source="a.jpg")] 
        [Bindable] 
        public var iconSymbol:Class; 
        private function alertListener(eventObj:CloseEvent):void { 
            // Check to see if the OK button was pressed. 
            if (eventObj.detail==Alert.OK) { 
              myText.text = myInput.text; 
            } 
        } 
      
    

    
        
                    click='Alert.show("Copy Text?", "Alert",Alert.OK | Alert.CANCEL, this,alertListener, iconSymbol, Alert.OK );' />