Accessing a movie clip in library with javascript
Hi,
Please accept my apologies for, what must seem like a basic question.
I have imported an .svg from inkscape to the library, converted it to a movie clip (test1) and I want to be able to add the movie clip to the stage using javascript. Here is my latest effort.
var stage = new createjs.Stage('democanvas');
var test2 = new lib.test1();
this.addChild(test2);
I haven't found any post about this forum and others, probably because it is is trivial.

