Santhosh Nayak
Santhosh Nayak

Reputation: 2288

About shared objects

Can we use or access shared object stored in another system? I'm storing some data in shared object in one system can i access that shared object data from another system?

I think Shared objects are stored in local machine. Can we give the path to (specified system ie server)where the shared objects will store, and can we access that object through same path?

Upvotes: 0

Views: 209

Answers (2)

Jonatan Hedborg
Jonatan Hedborg

Reputation: 4432

Short answer, no. getLocal will only access the local filesystem, while getRemote is only for connecting to a flash media server (or equivalent).

Upvotes: 1

Ohas
Ohas

Reputation: 1871

Try setting the second argument of SharedObject.getLocal() method to the path where the shared object is stored. flash.net.SharedObject.getLocal()

Upvotes: 0

Related Questions