·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]as3替换指定文本字符的写法源代码

时间:2015-03-13 11:37酷播
使用replaceSelectedText(newText)方法替换选中的文字或用replaceText(startIndex,endIndex,newText)方法替换某一范围的文字

使用replaceSelectedText(newText)方法替换选中的文字或用replaceText(startIndex,endIndex,newText)方法替换某一范围的文字

  1. package { 
  2.  import flash.display.Sprite; 
  3.  import flash.events.KeyboardEvent; 
  4.  import flash.text.TextField; 
  5.  import flash.text.TextFieldType; 
  6.  public class Sample0422 extends Sprite 
  7.  { 
  8.   public function Sample0422() 
  9.   { 
  10.    var textBox:TextField = new TextField(); 
  11.    textBox.type = TextFieldType.INPUT; 
  12.    textBox.background = true
  13.    this.addEventListener(KeyboardEvent.KEY_DOWN,onKeyDown); 
  14.    this.addChild(textBox); 
  15.   } 
  16.    
  17.   private function onKeyDown(event:KeyboardEvent):void 
  18.   { 
  19.    if(event.keyCode == 13) 
  20.    { 
  21.     var txt:TextField = event.target  as  TextField; 
  22.     txt.replaceSelectedText("巫妖王之怒"); 
  23.     txt.replaceText(0,2,"wow"); 
  24.    } 
  25.   } 
  26.  } 

[AS3]as3替换指定文本字符的写法源代码

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器