Flash:将 x,y=0,0 更改为右上角,而不是左上角

发布于 2024-10-15 10:39:37 字数 92 浏览 5 评论 0原文

Flash 中有没有办法更改 x,y 轴系统,使 0,0 位于舞台的右上角而不是左上角? (因为当我用 RTL 语言开发某些东西时 - 定位计算将更容易处理......)

Is there a way in Flash to change the x,y axis-system so that 0,0 will be the top-right corner of the stage instead of the top left? (for when I'm developing something in an RTL language - the positioning calculations will be easier to handle...)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╄→承喏 2024-10-22 10:39:37

我不知道(它可能存在于 Flash Designer 的本地化版本中)。但是您始终可以通过一个实用函数来泵送坐标,该函数会发现 DisplayObject 的宽度,并以这种方式进行转换。像这样的事情:

function convertRTL(x:int, o:DisplayObject):int {
    return o.width - x;
}

There isn't that I'm aware of (It may exist in a localized version of Flash Designer). But you could always just pump coordinates through a utility function that would discover the width of the DisplayObject, and convert that way. Something like this:

function convertRTL(x:int, o:DisplayObject):int {
    return o.width - x;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文