Flash AS3.0文本框只能輸入數(shù)字的代碼
所屬欄目: Flash | 更新時間:2015-8-15 | 閱讀:4445 次
shuru_txt.addEventListener(MouseEvent.CLICK, shurujianting1 );
function shurujianting1(event: MouseEvent):void
{
shuru_txt.restrict = "0-9";
function shurujianting1(event: MouseEvent):void
{
shuru_txt.restrict = "0-9";
}
//文本框只能輸入數(shù)字的代碼,其他字符無效。
如果要輸入小數(shù)點:
shuru_txt.restrict = "0-9\.";