How to load special characters

Hi !

Being from Norway there’s important for me that my Flash application load special characters like æ,ø,å.

How do i load them with loadvars();

When I’ve loaded the variables from the page, and access them, i only get the string before the special character loaded.

I’ve tried to return them with e.g. å which doesn’t help me at all…

My Example code:

var d = new LoadVars();
d.onLoad = showValues;
d.load("<somesitewhichreturnssomething>");

function showValues()
{
trace(this);
trace(this.var1);
trace(this.var2);
}

The best way to load them to to convert them to their URL encoded values! I think there are softwares out there taht will accomplish this task for you and free too! If you want to know about URL encoded values try typing your special characters on your browser’s address bar and press enter! All special characters will then be converted to their equivalent URL encoded values! :slight_smile:

It still doesn’t help.

Tried to write a little asp-script:

<%
s = “Drøbak"
s = replace(s,“ø”,”%F8")
response.write(“var1=” & s")
%>

When i load this into flash the LoadVar still returns “Dr” instead of “Drøbak.”