AS3: SharedObjectManager

View Documentation
Download Class
A simple utility to manage shared objects and their properties. This is the same as the AS2 version but adjusted for use in AS3.


AS2: SharedObjectManager

View Documentation
Download Class
A simple utility to manage shared objects and their properties.
PLAIN TEXT
Actionscript:

import mx.events.EventDispatcher;

import mx.utils.Delegate;

 

/**

* A simple utility to manage shared objects and their properties.

*

* @usage

* <code>

* <pre>

import com.reintroducing.utils.SharedObjectManager;

var som:SharedObjectManager = new SharedObjectManager("userData");

som.setProperty("hasVisited", "yes");

trace(som.getProperty("hasVisited"));

* </pre>

* </code>

*

* @author Matt Przybylski [http://www.reintroducing.com]

* @version 1.0

[...]