the only problem ist that the var that give out the amount of total bytes shows bytes and not KB… get.Bytes.Loaded is functioning properly… any suggestions how i can geht the KB of total bytes to be shown ?!?
Your problem lies in the fact that you are dividing.
The getBytesLoaded and getBytesTotal methods get the bytes. So by dividing by 1024 you are saying that there are 1024kb in 1 byte, but there are really 1024 bytes in 1kb.
So with that said your code will go from dividing, to multiplying, so it is saying that there are 1024 bytes in 1kb.