Search This Blog

Mind freaker Stuff

Please Visit my new blog http://www.mindfreakerstuff.com for new articles related to web and mobile designing.

Sunday, November 27, 2011

Number (Numeric) Input Field : Flash Action Script 2

Add following code to flash Action Script will restrict user to input only Numeric Values 

textField_IntanceName.restrict = "0-9"


 following code allows A-Z except R and K:

textField_IntanceName.restrict = "A-Z^RK";


// Example 1: Allow only uppercase A-Z, spaces, and digits 0-9.
my_ti.restrict = "A-Z 0-9";


 // Example 3: Allow only digits 0-9, dash (-), ^, and \
my_ti.restrict = "0-9\\-\\^\\\\";


//Example 1: Allow only uppercase A-Z, spaces, and digits 0-9.
my_ti.restrict = "A-Z 0-9";

No comments:

Post a Comment