2013-10-15 29 views
1

我正在使用FlashBuilder 4.6構建移動應用程序。 我使用的是PersistenceManager,它可以在所有設備上很好地工作(phew ..) 我的問題是在我的Windows計算機 - 它不保存任何東西。函數調用是成功的,但是當我在Windows中重新啓動我的應用程序時,就像沒有保存任何東西。FlashBuilder PersistenceManager在設備上工作,但不在Windows中

private var saveManager:PersistenceManager = new PersistenceManager(); 
saveManager.setProperty("Radiohead", "Thomyourke"); 
saveManager.save(); 

有什麼建議嗎?

回答

1

因爲它僅適用於Air/mobile。在Web應用程序的情況下使用SharedObject。

相關問題