I have a server program that writes data to datastream, and writes that to the connected client. When the client recieves the readReady() signal, it reads the data the server sent. Now, whenever I move a slider on the server app, the value of that slider is transmitted to the client. The client reads that data and moves an identical slider in the client app. When I move the server slider, the client's slider moves too, but not at the same rate I moved the server slider. It always is a bit behind, and the more I move the server slider, the farther behnd the client slider gets. Is there any way I can synch the two up, so the client doesn't eventually get several minutes worth of data behind the server?