Widget.getMemory()

Availability

Flash Player 7 + TheSpringBox V1

Usage

Widget.getMemory() : Object;

Parameters

None.

Returns

An Object with the properties set using the Widget.setMemory method.

Description

Method; used to retrive stored data from the client such as settings and preferences. Retrieves the object set using Widget.setMemory.

Example

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]);
};
    

See also

Widget.setMemory()