
Flash Player 7 + TheSpringBox V1
Widget.getMemory() : Object;
None.
An Object with the properties set using the Widget.setMemory method.
Method; used to retrive stored data from the client such as settings and preferences. Retrieves the object set using Widget.setMemory.
The function in this example will retrieve the feed-list and load the first URL:
function getFeeds() {
var settings:Object = Widget.getMemory();
loadFeed(settings.feeds[0]);
};
Widget.setMemory()