HTTPServiceタグをっ利用してXMLの情報を入手しようとすると文字化けが起こる場合がある。
mxml内の初期設定コードに「System.useCodePage = true;」を追加する事でこの問題を回避できる。
private function setup(): void {
System.useCodePage = true;
user_id = Application.application.parameters.user_id;
Alert.show(user_id);
smallExternalData.send();
roamer.repulsionFactor = 0.4;
roamer.showHistory = true;
}
http://livedocs.adobe.com/flex/2_jp/langref/flash/system/System.html
