ActionScript 3 AS3中心一个DisplayObject相对于另一个

Posted

tags:

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

function center(foreground:DisplayObject, background:DisplayObject):void
{
	foreground.x = (background.width / 2) - (foreground.width / 2);
	foreground.y = (background.height / 2) + (foreground.height / 2);
}

以上是关于ActionScript 3 AS3中心一个DisplayObject相对于另一个的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 我的第一个AS3

ActionScript 3 使用AS3绘制一个矩形

ActionScript 3 AS3:创建一个Bottons网格

ActionScript 3 AS3绘制一个简单的矩形蒙版

ActionScript 3 [AS3]在一个范围内创建一个随机数

ActionScript 3 AS3 - 如何从另一个类访问文档类