Hi,
I am try to use the example in the docs:
You use the same static method getLocal() to create a new Local Shared
Object or to retrieve an existing one.
public static function getLocal(name:String, localPath:String = null,
secure:Boolean = false):SharedObject
Then call the method and save the referrence in a variable:
var myNewLocalSharedObject:SharedObject =
SharedObject.getLocal("myNewLocalSharedObject");
Royale looks for an existing myNewLocalSharedObject.sol file in the local
directory on the user's computer. If it does not find one, Royale creates a
new .sol file with that name. It then returns a reference to the file.
But I can not found the SharedObject object.
Thanks for your help.
Jorge Valeze