Hello,

I am porting a Flex application into Royale in order to transpile to
Javascript.

The application had some graphical elements which extended UIComponent and
were added as children to an mx.containers.Canvas.
I was using UIComponent.transform.matrix to rotate the elements, however in
Royale UIComponent does not have the transform property anymore.

Is there any way I can apply rotation/translation to my elements? I'd need
to write code similar to

var m:Matrix = new Matrix();
m.rotate(angle);
this.transform.matrix = m;

Thanks,
Marco

Reply via email to