LoadVars.toString()

Availability

Flash Player 6.

Usage

my_lv.toString()

Parameters

None.

Returns

A string.

Description

Method; returns a string containing all enumerable variables in my_lv, in the MIME content encoding application/x-www-form-urlencoded.

Example

var myVars = new LoadVars();
myVars.name = "Gary";
myVars.age = 26;
trace (myVars.toString());
//would output
//name=Gary&age=26