PlugPlugRequestFailed when using retrievePreference()
Hello,
I've recently converted a panel of mine from a Extension Builder project. Since then when I try to retrieve data from Photoshop's storage I get PlugPlugRequestFailed. To see if the way I converted my project may be the cause, I created a fresh project with just the preference code and it still failed. Just to double check the data was still there, I debugged an old version of the panel and it was able to retrieve the data just fine. All of my other SyncRequestResult related code like getHostEnvironment() works fine. What kind of dependencies are there for retrievePreference() that might cause this?
var csxs:CSXSInterface = CSXSInterface.getInstance();
var ggDataResult:Object = csxs.retrievePreference("ggData");
if (SyncRequestResult.COMPLETE == ggDataResult.status && ggDataResult.data) {}
Thanks,
Cameron