Hello,

sand wrote:
> I try to use: so.data.txt=txtArea.text, but the size of the files in 
> "persistence\SharedObject" does not increase.

Instead of so.data.txt=..., try this code: so.setProperty('txt', txtArea.text);

If so = SharedObject.getLocal(...), so.data.foo = bar; is work.

But if so = SharedObject.getRemote(...), so.data.foo = bar; is not work.
It change only local data property. Its change don't transmit to remote.

so.data.foo = bar; //this don't transmit change to server.
so.setDirty('foo'); //this transmit change of 'foo' to server.

so.setPrperty('foo', bar); //this update data and transmit change to server.
setProperty method is similar to update data and setDirty.
(setProperty update value and transmit only when that value has changed, but 
setDirty is always.)

The way I understand these spec will be all for performance.

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to