Re: [Flashcoders] Upload speedometer without FileReference?

2006-11-27 Thread David Rorex
Other options are using Java, which has more flexibility, or perhaps using XML or LoadVars, and sending a specific amount of POST data. simply divide amount sent by time taken, to get the speed. On 11/27/06, Timothee Groleau <[EMAIL PROTECTED]> wrote: I know upload has nothing to do with files.

Re: Re: [Flashcoders] Upload speedometer without FileReference?

2006-11-27 Thread Jordan Snyder
one way is to send data to a FCS/FMS implementation and have the server send back the time it got your original message...compare that to when you sent the original message a few times and you have an idea of speed... that's the gist. On 11/27/06, Timothee Groleau <[EMAIL PROTECTED]> wrote: I k

Re: [Flashcoders] Upload speedometer without FileReference?

2006-11-27 Thread Timothee Groleau
I know upload has nothing to do with files. The only reason I mentionned files is because, as far as I know, only file upload in Flash tells you how much you have uploaded, and you can use that to determine an upload speed. How do you reliably measure upload speed of sending data in Flash? On

Re: [Flashcoders] Upload speedometer without FileReference?

2006-11-26 Thread Michael Bedar
in this case upload has nothing to do with files, it just means sending data, while download means receiving it.. On Nov 25, 2006, at 10:04 PM, Timothee Groleau wrote: Hi there, I'm curious on how the upload part of the speedometer was created at the sites below: http://www.speedtest.net

[Flashcoders] Upload speedometer without FileReference?

2006-11-26 Thread Timothee Groleau
Hi there, I'm curious on how the upload part of the speedometer was created at the sites below: http://www.speedtest.net/ http://www.speakeasy.net/speedtest/ (both sites use the same speedometer engine) Download speedometer is easy to build but I wonder how they did it for upload. The FileRe