i am using the bellow code to download a file from my ftp server.The file is downloaded on Mobile devices. i am try to use a progress bar to show up the amount of data downloaded The problem is always i get "cached". this is my code
constant FTPHOST = "myIp"
constant FTPUSER = "user"
constant FTPPASS = "password"
global sDownloadStart
on mouseUp
put "test.zip" into tFileName
put "ftp://" & FTPUSER & ":" & FTPPASS & "@" & FTPHOST & "/" & tFileName into pUrl
-- start the download process, telling Rev to call the "downloadComplete" handler when finished
Load URL pUrl with message "urlProgress"
set the startvalue of sb "progressbar" to 0
end mouseUp
on urlProgress pURL, pStatus, pBytesDone, pBytesTotal
put pStatus into fld "pf1"
switch item 1 of pStatus
case "loading"
set the thumbPosition of sb "Progressbar" to round((pBytesDone / pBytesTotal) * 100)
put the round of (item 1 of pBytesDone / 1024)&& "KB Downloaded" into field "status"
break
case "cached"
-- if pStatus is "cached" then
-- work out a file name for saving this file to the desktop
set the itemDel to slash
put "binfile:" & specialfolderpath("documents") & "/test.zip" into myPath
//put "data.file" into tFileName
put url pUrl into url myPath
answer "Download completed" with ok
-- to save memory, now unload the URL from memory
-- this also means that if you want to run the test again, it does not just use a cached version
unload pURL
--end if
break
case "error"
if pStatus = "error" or pStatus = "timeout" then
answer error "The file could not be downloaded." with "ok"
end if
break
end switch
end urlProgress
Your
urlProgress
handler is called after the loading of the URL finishes. To get a different status, you have to call another message or call the message in a different way, e.g.Let me know if this works (it should). If not, I'll have another look.