Need help reading a shared object...
OK, I have an iPad app that stores data in a shared object. That data is supposed to be uploaded to a webservice... for whatever reason something's not working and I need the data stored in that .sol. So, I found iExporer and I managed to get the file off of the iPad and onto my desktop. However I'm not having luck reading the file... I did use the / local path parameter so other swf's should be able to access it:
so = SharedObject.getLocal("xfinScratchData", "/");
The swf and sol are both on the desktop... So, I also tried with:
var desktop:File = File.desktopDirectory;
so = SharedObject.getLocal("xfinScratchData", desktop.nativePath);
and that doesn't work either... Anyone have any thoughts?