How to apply filters with code?(html/canvas)
Below is the code I'm using straight out of createJs docs and I can't seem to get filters to work when I apply them with code. Any help? thanks
var matrix = new createjs.ColorMatrix().adjustHue(180).adjustSaturation(100);
root.myMc.filters = [
new createjs.ColorMatrixFilter(matrix)
];