I am currently reading and writing .sol file by using Flash Projector with localpath "/" and .sol file is being saved at "C:\Users\<username>\AppData\Roaming\Macromedia\Flash Player\#SharedObjects\<randomcode>\localhost"
and works fine with projector so
Problem is:
When i try to use it Adobe AIR it saves the .sol file at "C:\Users\<username>\AppData\Roaming\<app id>\Local Store\#SharedObjects"
and i cant use it with Adobe AIR
Some part of the code:
{
if(!olympData)
{
Security.exactSettings = false;
skidData = SharedObject.getLocal("OlympDATA","/");
}
return olympData;
}
Which localpath should i write instead of "/" to be able to use it with Adobe AIR?