我使用 flash builder 4.5 和 AS3 从实时 JSON 数据源动态加载图像。它的加载和工作正常并响应我的滑动手势(左滑动返回,右滑动前进到下一个图像)......
我想添加一些动作脚本来检测图片在成功加载后的方向,然后如果它是垂直方向的照片,将舞台旋转 90 度(并设置某种类型的标志以记住它处于“旋转状态”。
我怎样才能做到这一点?
if (myPic && myPic.width > myPic.height)
{
// this picture is horizontal, so leave stage in normal landscape aspect ratio
} else {
// something here to take the stage and rotate it 90 degrees
}