Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Flash 中有没有办法改变 x,y 轴系统,使 0,0 成为舞台的右上角而不是左上角?(因为当我用 RTL 语言开发一些东西时——定位计算会更容易处理......)
我不知道(它可能存在于 Flash Designer 的本地化版本中)。但是您总是可以通过一个实用函数来抽取坐标,该函数会发现 DisplayObject 的宽度,并以这种方式进行转换。像这样的东西:
function convertRTL(x:int, o:DisplayObject):int { return o.width - x; }