found something in your code, but not sure if this is causing your inconvenienece:
Code: Select all
on urlProgress pURL, pStatus, pBytesDone, pBytesTotal
put pStatus into fld "pf1" of group "up_bar"
switch pStatus
...
case "downloaded"
set the itemDel to slash
put specialfolderpath("documents") & "/fms.zip" into myPath
## Here you are PUTting the urls TWICE on your hd, maybe removing one of these lines will help?
put pUrl into URL ("binfile:" & myPath)
put url pUrl into url myPath
...
Klaus