View Single Post
  #7 (permalink)  
Old 09-27-06, 07:11 AM
UnrealEd's Avatar
UnrealEd UnrealEd is offline
Community Liaison
 
Join Date: May 2005
Location: Antwerp, Belgium
Posts: 3,165
Thanks: 4
Thanked 25 Times in 25 Posts
try removing that dot:
not:
Code:
document..filesform.userFile[i].value);
but:
Code:
document.filesform.userFile[i].value);
UnrealEd
__________________
"Good judgement comes from experience, and experience comes from bad judgement." - Fred Brooks

Reply With Quote