Hi Everyone,
Any help is Seriously appreciated.
I cannot get Flash 8 to show a cedilla (c with squiggly bit at bottom).
I have read all forum threads on this and there are some very thorough suggestions. I have tried them all. Nothing has worked. I think I am going mad.
I have a UTF-8 text file made in notepad:
myNews=This is Text one: %AE %E7
** The %AE shows up fine as the ‘Registered’ symbol. The %E7 which is the cedilla shows nothing.
I have a flash file with one frame and one dynamic textbox called “cedilla”. It is set to render html and embeds all characters and specifically includes the cedilla.
The font is Times New Roman which definitely includes a cedilla. The actionscript is:
System.useCodepage = true;
myLoadVar = new LoadVars ();
myLoadVar.load(“TEXT1.txt”);
myLoadVar.onLoad = function (success){
if (success == true) {
cedilla.variable = myNews;
cedilla.htmlText = myLoadVar.myNews;
}
}
Any help much appreciated.