var params:Object = new Object();
params.Fld1 = Fld1.text; //the Fld.text is åäö
params.Fld2 = Fld2.text; //the Fld.text is ÅÄÖ
var request:HTTPService = new HTTPService();
request.method = "POST";
request.send(params);
When recieving the params in the server-function the Fld1 is
translated to UTF-8 (åäö) and is
ok.
but the Fld2 is translated to samething else
(Ã?Ã?Ã?) and is not UTF-8.