Flash 8 Documentation |
|||
| ActionScript 2.0 Language Reference > ActionScript classes > LoadVars > decode (LoadVars.decode method) | |||
public decode(queryString:String) : Void
Converts the variable string to properties of the specified LoadVars object.
This method is used internally by the LoadVars.onData event handler. Most users do not need to call this method directly. If you override the LoadVars.onData event handler, you can explicitly call LoadVars.decode() to parse a string of variables.
Availability: ActionScript 1.0; Flash Player 7
queryString:String - A URL-encoded query string containing name/value pairs.
The following example traces the three variables:
// Create a new LoadVars object
var my_lv:LoadVars = new LoadVars();
//Convert the variable string to properties
my_lv.decode("name=Mort&score=250000");
trace(my_lv.toString());
// Iterate over properties in my_lv
for (var prop in my_lv) {
trace(prop+" -> "+my_lv[prop]);
}
onData (LoadVars.onData handler), parseXML (XML.parseXML method)
Version 8
RSS feed | Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/flash/8/main/00002326.html
Comments
reinier77 said on Feb 16, 2006 at 7:44 AM :