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; }