Avatar

Level 5

For alphabetical characters only, use the following javascript on the validate event of the text field

var r = new RegExp("^[a-z]*$");

var result = r.test(this.rawValue);

if (result == true)

    true;           

else               

    false;  

Also, set the Validation Script Message properties in the Object->Value Tab