Hi I got a form for the first name and last name in my flash website For the two fields I defined them as not null but when you just click the spacebar and click on submit its taking it Can some one please help me how do I write the validation for not taking space bar as an Input and and the field should not be empty (Note: I am using actionscript 2.0)
_validateParams[pCnt++] = { type: "notNull", input: win.firstNameInput , isSendData:true, dataName:"firstName"};
_validateParams[pCnt++] = { type: "notNull", input: win.lastNameInput, isSendData:true, dataName:"lastName"};