as3键盘监听,文本框之内 只允许输入1-99之间数字,怎么写呀
4个回答
展开全部
其实,这个都不用写代码,在fla中,你的选择你要的动态文本框,下面的属性框里面,有个最大字数的限制框,在里面填上2,就是最多输入两位数。也就是1~99了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
textField = new TextField();
textField.restrict = "0-9";
textField.maxChars = 2;
textField.type = TextFieldType.INPUT;
textField.restrict = "0-9";
textField.maxChars = 2;
textField.type = TextFieldType.INPUT;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先创建一个flash
as3文档
1,第一步
添加两个组件,文本框和按钮
对组件的属性进行一些设置
文本框属性设置:
按钮属性设置:
2,第二步
创建图层
在第一帧加上代码:
stop();
bt1.addeventlistener(mouseevent.click,
fl_mouseclickhandler);
function
fl_mouseclickhandler(event:mouseevent):void
{
if
(
txt1.text
==
"1234")
{
gotoandstop(10);
}
trace(txt1.text);
}
as3文档
1,第一步
添加两个组件,文本框和按钮
对组件的属性进行一些设置
文本框属性设置:
按钮属性设置:
2,第二步
创建图层
在第一帧加上代码:
stop();
bt1.addeventlistener(mouseevent.click,
fl_mouseclickhandler);
function
fl_mouseclickhandler(event:mouseevent):void
{
if
(
txt1.text
==
"1234")
{
gotoandstop(10);
}
trace(txt1.text);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private var _textFiled:TextField ;
public function initTestFiled()
{
_textFiled = new TextField()
_textFiled.restrict = "0-9" ;
_textFiled.type = TextFieldType.INPUT ;
_textFiled.maxChars = 2 ;
_textFiled.text = "1" ;
addChild(_textFiled)
_textFiled.addEventListener(Event.CHANGE,textInput);
}
public function textInput(e:Event):void
{
if(0 == int( _textFiled.text.charAt(0)))
{
_textFiled.text = "" ;
}
}
//上面两位说的都可以输入0 , 比如 00 ,01,02 都得行的。。。
public function initTestFiled()
{
_textFiled = new TextField()
_textFiled.restrict = "0-9" ;
_textFiled.type = TextFieldType.INPUT ;
_textFiled.maxChars = 2 ;
_textFiled.text = "1" ;
addChild(_textFiled)
_textFiled.addEventListener(Event.CHANGE,textInput);
}
public function textInput(e:Event):void
{
if(0 == int( _textFiled.text.charAt(0)))
{
_textFiled.text = "" ;
}
}
//上面两位说的都可以输入0 , 比如 00 ,01,02 都得行的。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询