Reputation: 572
I need to set input form properties to max 3 characters and number only. Can't find it in the documentation.
Upvotes: 0
Views: 1947
Reputation: 6127
txtInput.maxChars = 3;
txtInput.restrict = "0-9";
http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00001603.html
http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00001621.html
Upvotes: 2