[FMX] - Creating shared object arrays for multiple users

Hello all,

I am creating a computer game with a save game function which outputs the contents of an array to a shared object, so that users don’t loose their place.

However, I wish for this to work with multiple users, and realise that to do this I need a new seperate “folder” within the shared object being created for each new users data array.

I know it must be something like…

// Define the shared object using a “sublevel” for each users data array…
_root.savegame.sublevel = sharedobject.getLocal(“savegame”; “/”);
// somehow dynamically change “sublevel” to the contents of the var “currentUser” as defined when the user logs in when the game loads up.

OR…

Should I be doing this?..

//Define the shared object but using a variable title for the actual SO…
_root.savegame = sharedobject.getLocal(“savegame_currentUser”, “/”);
//with that “currentUser” being dynamically substituted for the contents of the var “currentUser” which is defined when the User logs in when the game loads up.

(This is vexxing me somewhat… are either of these possible or is there an alternative?)
Help appreciated greatly.

Kindest regards,

-Zip.