[原创]动态文本与输入文本互相切换

      *FlashAction 2005-4-26 9:12



TextField.type




指定文本字段的类型。有两种值:"dynamic" 指定动态文本字段(用户不能对其进行编辑);"input" 指定为输入文本字段。


在两按钮上分别加上:


动态文本按钮上加


on (release) {


this.my_txt.selectable = false;


//设定文本my_tx不可选


this.my_txt.type = "dynamic";


//设定文本my_tx类型为动态


this.my_txt.text = "动态";


}


输入文本按钮上加


on (release) {


this.my_txt.text = "输入";


this.my_txt.selectable = true;


//设定文本my_tx可选


this.my_txt.type = "input";


//设定文本my_tx类型为输入


Selection.setFocus("my_txt");


//获取文本my_tx焦点


}
点击浏览该文件


www.flash8.net/bbs/UploadFile/2005-4/2005421164441637.fla

点击浏览该文件


www.flash8.net/bbs/UploadFile/2005-4/2005421164450616.swf




标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}