SharedObject not creating sol file
I am working on adding saving and loading through SharedObject. I create it using:
var saveObject:SharedObject;
saveObject = SharedObject.getLocal("saveFile");
When I close and then re-test my game the saveObject is still null. I went into check if the file was created but it fails to create the .sol file. It goes as far as:
C:\Users\name\AppData\Roaming\Macromedia\Flash Player\#SharedObjects\2Z8NDU4S\localhost\Users\name\Desktop\FlashGames
I have another game that saves the same way and is working fine. The name for this save file is not the same as the one I am trying to make now. the path for this .sol file is:
C:\Users\name\AppData\Roaming\Macromedia\Flash Player\#SharedObjects\2Z8NDU4S\localhost\Users\name\Desktop\FlashGames\SaveAndLoadWorking\Saving and Loading.swf
I have no idea what I am doing wrong. Any help is appreciated
