declare variable/instance name of flash shape using flash stage like movieclip . is that possible?
we can get shape variable by this way . but i want that i will make cirlces (shapes) in flash stage directly and get variables exactly like movieclip instance name
if
/* js
var circle = new createjs.Shape();
circle.graphics.beginStroke('#000');
circle.graphics.beginFill('#FFF000');
circle.graphics.drawCircle(0, 0, 50);
circle.x = 250;
circle.y = 70;
stage.addChild(circle);
*/
