I make a square. turn it into a clip. name it quad
then i clone it and set a new Y for the clone quad2 (all works)
if I try to set height or width (or even fill color) the clone quad2 disappear.
quad2=quad.clone();
quad2.y=200;
quad2.width=10; //quad2 disappear !!!
this is pretty strange as I can change all properties on the base quad clip
in fact this is the workaround I’m using at present (change base clip properties before cloning it)