Static helper class used for saving and loading data from stored cookies.
Static variables
static id : String
If you want to share data between different SWFs on the same host, use this id.
Static functions
static load (file : String = "") : Void
Overwrites the current data with the file.
Parameters:
file | The filename to load. |
static read (name : String, defaultValue : Dynamic) : Dynamic
Reads a property from the data object.
Parameters:
name | Property to read. | |
defaultValue | Default value. |
Returns:
The property value, or defaultValue if the property is not assigned.
static readBool (name : String, defaultValue : Bool = true) : Bool
Reads a Boolean from the current data.
Parameters:
name | Property to read. | |
defaultValue | Default value. |
Returns:
The property value, or defaultValue if the property is not assigned.
static readInt (name : String, defaultValue : Int = 0) : Int
Reads an int from the current data.
Parameters:
name | Property to read. | |
defaultValue | Default value. |
Returns:
The property value, or defaultValue if the property is not assigned.
static readString (name : String, defaultValue : String = "") : String
Reads a String from the current data.
Parameters:
name | Property to read. | |
defaultValue | Default value. |
Returns:
The property value, or defaultValue if the property is not assigned.
static save (file : String = "", overwrite : Bool = true) : Void
Overwrites the file with the current data. The current data will not be saved until this function is called.
Parameters:
file | The filename to save. | |
overwrite | Clear the file before saving. |
static write (name : String, value : Dynamic) : Void
Writes a Dynamic object to the current data.
Parameters:
name | Property to write. | |
value | Value to write. |