View Single Post
  #3 (permalink)  
Old 09-27-06, 06:46 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 a for loop to loop over the entries:
Code:
for( var i=0; i<number_of_entries; i++){
  window.opener.document.foo.attach{i}.value = document.filesform.userFile[i].value;
}
i'm not sure about the {} but if you search the web, i'm sure you'll find how to do so

Hope this helps,
UnrealEd
__________________
"Good judgement comes from experience, and experience comes from bad judgement." - Fred Brooks

Reply With Quote