On Jun 9, 2008, at 4:40 AM, David Pariente wrote: > The only problem is that if user selects a file several times in > the same file_select button, it would keep getting files inside > that array, even i just need the last one that he chooses.
Not if you make sure the file doesn't already exist in the array. This is where you'd use the .name property to check to see if it's already in the array - if so, skip it or throw up an Alert dialog or something. Otherwise, push it into the array. - jb

