To image rotate I used Matrix class. Rotating work very well, but if I try scroll - image hide. How to solve this problem ? How to rotate big Image ? Flex Code[Rotate]:

var tmpMatrix:Matrix = wImage.transform.matrix;
var oHeight:Number = wImage.height / 2;
var oWidth:Number = wImage.width / 2;``
tmpMatrix.translate(-oWidth, -oHeight);
tmpMatrix.rotate(-Math.PI / 2);
tmpMatrix.translate(oWidth, oHeight);
wImage.transform.matrix = tmpMatrix;

Best regards, mykhaylo

link|improve this question

79% accept rate
feedback

3 Answers

Why not use the wImage.rotation property?

link|improve this answer
feedback

Kind of solution for image rotation it does not matter. My problem: after image scrolling - image hide.

link|improve this answer
feedback

From my experience, that code works depending on how is the image previously sized and positioned, and what you do after rotation. What I do after rotating is modify matrix tx and ty in order to reposition the image, which is actually out of the viewport.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.