Copy link to clipboard
Copied
I am looking for simple dynamic text color change without having to use EaselJS?
David
Everything visible on the stage in Animate HTML5 Canvas documents is rendered by EaselJS, so it's nearly impossible to not use it.
To change the color of a text object, just set its color property:
https://www.createjs.com/docs/easeljs/classes/Text.html#property_color
This property is managed by EaselJS, by the way.
Copy link to clipboard
Copied
Everything visible on the stage in Animate HTML5 Canvas documents is rendered by EaselJS, so it's nearly impossible to not use it.
To change the color of a text object, just set its color property:
https://www.createjs.com/docs/easeljs/classes/Text.html#property_color
This property is managed by EaselJS, by the way.