I am new in Flex Environment, specifically flex3. I've been studying it for 1 week. I have a project which I need FTP to upload and download mp3 and pictures files.
What is the best way to get started?
I am new in Flex Environment, specifically flex3. I've been studying it for 1 week. I have a project which I need FTP to upload and download mp3 and pictures files.
What is the best way to get started?
I used this 2 years ago. It works great but only one thing is missing, and it makes it impossible to use for big files (more than 10 or 50 Mo).
In fact, sockets in Flex have a buffer you can write into, so that data will be sent. But you can not determine how much of the buffer has been sent, nor if it is empty.
So the progress of an upload or the upload completion is impossible to retrieve with flex... maliboo has made an approximation in the pl.maliboo.ftp.invokers.UploadInv class. He sends 4096 every 300 ms, and considere that it is ok.
And this will always be true, because it is the worst case, but when you upload 3Go with a good connection speed, the script will run forever, also the upload is finished.