Dynamic text HTML5
Hi everyone,
I am slowly going from Flash/as3 to Canvas/Javascript and I have a newbie problem with dynamic texts.
I have a dynamic text on the stage instanced as T_Counter and I simply want to change its text property.
I tried the basic :
this.T_Counter.text = "This is a test"; and nothing shows
I tried with a variable :
var ceTexte = "This is a text";
this.T_Counter.text = ceTexte; and nothing shows
It's a bit frustrating to be unable to perform such a basic task !
Thanks in advance for any hint !

