I'm have been looking at this problem for hours now,
but I can't seem to solve it so please have a look at this:
When I read in the following variable from a text file:
&RefText=%7E %A5 %E9&
And I display it in a dynamic text field as follows:
_level0.ContentText.htmlText = _level0.RefText;
I only get to see:
~ ¥
instead of
~ ¥ é
Even when I explicitly add the é character to the list of characters to be embedded, it won't work.
When I put this in the text file:
&RefText=é&
it also doesn't work.
The ONLY way I can get the dynamic text to show the character, is
by doing this:
_level0.ContentText.htmlText = "é";
But that's not very useful to me...
Any help would be great !
but I can't seem to solve it so please have a look at this:
When I read in the following variable from a text file:
&RefText=%7E %A5 %E9&
And I display it in a dynamic text field as follows:
_level0.ContentText.htmlText = _level0.RefText;
I only get to see:
~ ¥
instead of
~ ¥ é
Even when I explicitly add the é character to the list of characters to be embedded, it won't work.
When I put this in the text file:
&RefText=é&
it also doesn't work.
The ONLY way I can get the dynamic text to show the character, is
by doing this:
_level0.ContentText.htmlText = "é";
But that's not very useful to me...
Any help would be great !