Fork me on GitHub
View source

package haxepunk.utils

class Data

Static helper class used for saving and loading data from stored cookies.

Static variables

View source

static id : String

If you want to share data between different SWFs on the same host, use this id.

Static functions

View source

static load (file : String = "") : Void

Overwrites the current data with the file.


Parameters:
file   

The filename to load.

View source

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.

View source

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.

View source

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.

View source

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.

View source

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.

View source

static write (name : String, value : Dynamic) : Void

Writes a Dynamic object to the current data.


Parameters:
name   

Property to write.

value   

Value to write.