ActionScript 3 与中心对齐

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 与中心对齐相关的知识,希望对你有一定的参考价值。

public static function alignToCenter(obj:DisplayObject):void
{
	obj.x = obj.stage.stageWidth / 2 - obj.width / 2;
	obj.y = obj.stage.stageHeight / 2 - obj.height / 2;
}

以上是关于ActionScript 3 与中心对齐的主要内容,如果未能解决你的问题,请参考以下文章

如何将 3 个 html 表格并排对齐到中心

ActionScript 3 数字工具 - 中心,boundery

ActionScript 3 全屏中心

如何将文本与 QTableWidget 中的单元格中心对齐

如何将文本与 QTableWidget 中的单元格中心对齐

将元素与每个弹性框的中心底部对齐[重复]