as3 使用 appendText。我只是在串出数字,就像从按钮按下一样输入。
key2.addEventListener(MouseEvent.MOUSE_DOWN, thisButkey2);
function thisButkey2 (e:MouseEvent):void{
displayNums.appendText("2") ;
}
key3.addEventListener(MouseEvent.MOUSE_DOWN, thisButkey3);
function thisButkey3 (e:MouseEvent):void{
displayNums.appendText("3") ;
}
如何将字符串文本合计为一个数字?我想知道它是否> 100。
我解决了它 - 它只需要变成一个数字。
keyEnter.addEventListener(MouseEvent.MOUSE_DOWN, thisButEnter);
function thisButEnter (e:MouseEvent):void{
totalSum = Number(displayNums.text)
if ( totalSum > 100){
clearNums();
}
}