Re: Is this possible?

  •  02-20-2009, 2:37 PM

    Re: Is this possible?

    Terry,
     
    Thanks a lot. I'm coding out the solution above and almost have it perfect. What I'm trying to complete at this point is a file-level resume based on the file upload status.
     
    If I'm using the handler like this:
     
    myupload1.handleprogress=function(enable,filename,begintime,uploadedsize,totalsize){   
    if(enable)    {      
    if(totalsize)       {        
    x = 1;        
    y+=1;                 
    document.title=filename+" - "+Math.floo(100*uploadedsize/totalsize)+'%'
     
    as is listed in one of your examples, how can I get the file status? I can't pass files after the totalsize variable to the function, and I need to know the status ongoing to check for errors if there is a connection interruption. Can you be of assistance?

    ~ Thomas
View Complete Thread