Can't acces movie clip method after updating createJS.
Hello, I access the method of a movieClip that has the name 'testMc' in the linkage, using this code :
var tst = new lib.testMc();
tst.testversion();
this code is in the first frame of the 'testMc' movie clip :
function testversion(){
console.log('from mc new version !!!!!!!!!!!!!!!!');
}
this .testversion =testversion ;
I get this error after updating to a new createjs version 1.0.0
Uncaught TypeError: this .testversion is not a function
at a.b._dispatchEvent (createjs.min.js:12)
at a.b._dispatchEvent (createjs.min.js:12)
at a.b.dispatchEvent (createjs.min.js:12)
