flex-旋转对象以在网格上对齐

时间:2011-05-20 17:37:45

标签: flex image user-interface

我有一种情况需要将图像定位并旋转90度,使其精确地以其宽度为中心。行宽是网格行之间的距离

当我尝试将其旋转并围绕X1,Y1旋转时,我发现newImage.height计算为0并且图像旋转时边缘与网格对齐,而不是居中。我该如何纠正?

newImage.width=rowHeight;
newImage.maintainAspectRatio=true;
newImage.rotation=90;
trace(newImage.width,newImage.height);
imageX=X1+newImage.height/2; imageY=Y1;
newImage.x=imageX;newImage.y=imageY;

0 个答案:

没有答案