variables.acceptedExtensions = "png,gif,jpg,jpeg"; //Validation functions, an array of function names that get called in order. //If any of them fails the entire upload fails. variables.validationFunctions = ArrayNew(1); ArrayAppend(variables.validationFunctions,"validateSize"); ArrayAppend(variables.validationFunctions,"validateExtension");