Mega Code Archive

 
Categories / Flash ActionScript / TextField
 

Replaces the characters bcd in the text abcde with the new text x

package{   import flash.display.Sprite;   import flash.text.*;   public class Main extends Sprite{     public function Main(){         var t:TextField = new TextField(  );         t.text = "abcde";         t.replaceText(1, 4, "x");         trace(t.text);  // Displays: axe         addChild(t);     }   } }