HTML5 Canvas / using html code in dynamic textfield
Hello, and first sorry for mu english
I am trying o make a animation with dynamic text field, everything work with simple text, but when I want to manipulate a text with html code it doesn't work
My code
info = "<b>Hello</<b>";
myTextField.text = info; ///doesn't format my text
myTextField.htmlTxt = info; ///doesn't format my text
I am making that in a HTML5 Canvas
Thanks for your help !