Show the selection in TextInput Control : TextInput Selection « Components « Flex






Show the selection in TextInput Control

Show the selection in TextInput Control
          
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

  <mx:Script>
    
      import mx.controls.Alert;

      private function showSelectedText():void
      {
        var beginIndex:int = myInput.selectionBeginIndex;
        var endIndex:int = myInput.selectionEndIndex;
        var selectedText:String = myInput.text.substring(beginIndex, endIndex);
        myInput.setFocus();
        myInput.selectionBeginIndex = beginIndex;
        myInput.selectionEndIndex = endIndex;
        Alert.show(selectedText, "Selected Text");
      }
      
  
  </mx:Script>
  <mx:HBox>
    <mx:Label text="Enter some text and select them:"/>
    <mx:TextInput id="myInput"/>
    <mx:Button label="Show selected text" click="showSelectedText()"/>
  </mx:HBox>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Select text in TextInput controlSelect text in TextInput control
2.Display the selections of the TextInput control when you click the buttonDisplay the selections of the TextInput control when you click the button