Hello,The ActionScript documentation for Remote SharedObjectRSOs are
created using the static getRemote function. This returns a reference to
an object that can be shared across multiple clients by means of a
server, such as Flash Media Server. If the shared object does not
already exist, this method creates one.The following code shows how you
assign the returned shared object reference to a variable:var
myRemote_so:SharedObject = SharedObject.getRemote(name, remotePath,
persistence);After call...