Ho scoperto che esiste questo comando non presente sulla guida dell'action script: 'decode' (per LOADVARS).

questo è anche un esempio che ho trovato:


//create a new instance of the LoadVars object
myvars=new LoadVars()
//call the method with our name/value pair string
myvars.decode("name=Guy&age=18&icq=71063418")
//iterate over all the properties in the 'myvars' object
for(var i in myvars){
//trace the property name and property value
trace(i+":"+myvars[i])
}


siccome avevo bisogno di decodifica simile...
qualcuno di voi ne sa di più su questo comando?

ciao