change child size width and height
I try to put on the stage a picture from the library
var MyInstance = new lib["pic"+1]();
this.addChild(MyInstance);
MyInstance.x=50;
MyInstance.y=60;
this is work
but I want to change the size
I tried:
MyInstance.width=25;
it is not work
how can I change the width and the height of the child?
