0
A
回答
0
下面是一個使用數字鍵盤,並限制輸入的數字爲例:
package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.geom.Rectangle;
import flash.text.ReturnKeyLabel;
import flash.text.SoftKeyboardType;
import flash.text.StageText;
public class StageTextNumber extends Sprite
{
public function StageTextNumber()
{
var text:StageText = new StageText();
text.softKeyboardType = SoftKeyboardType.NUMBER;
text.restrict = "0-9";
text.returnKeyLabel = ReturnKeyLabel.GO;
text.stage = this.stage;
text.viewPort = new Rectangle(10, 10, 300, 40);
}
}
}
相關問題
- 1. Adobe Air Mobile(iOS,Android)和來電電話
- 2. Adobe air NativeAlert iOS和Android
- 3. Adobe Air - Analytics
- 4. Adobe Air Browser
- 5. localToGlobal Adobe AIR
- 6. Adobe AIR readLine
- 7. Adobe Air和PHP
- 8. Adobe Air - window.nativeWindow undefined
- 9. Adobe Air的DeviceOrientationEvent
- 10. Adobe Air和.NET
- 11. Adobe AIR截圖
- 12. Adobe Air with Iphone
- 13. Adobe Air和Dropbox
- 14. Adobe Air for iPhone
- 15. Adobe air http auth
- 16. Adobe Air Javascript API
- 17. Adobe AIR&PHP + MySQL
- 18. Adobe AIR鎖定
- 19. Adobe Air IOS中的黑色邊框
- 20. Adobe Air 23 + iOS 10.1.1全屏
- 21. AirPrint for ios Adobe air native extension .ane
- 22. CodeSign驗證失敗 - Adobe Flash AIR iOS
- 23. Adobe Air iOS應用 - 空白屏幕
- 24. Adobe Air ios打包程序
- 25. 的iOS與電話呼叫中斷
- 26. Adobe AIR Android FileStream問題
- 27. Adobe Air SQLite誤解
- 28. Adobe Air - MySQL或SQLite
- 29. Adobe AIR本機擴展
- 30. Adobe Air父框架橋
是的,我知道SoftKeyboardType.NUMBER,但這個我不能鍵入#+ *符號 –
@VakhtangiBeridze我知道,但這是AIR中唯一的可能性。 –