AS3:显示对象x,y?

时间:2010-03-28 20:03:45

标签: actionscript-3 hittest displayobject

现在我有一点我需要用显示对象的x和y更新以与hitTestPoint对象一起使用;有没有什么方法可以从显示对象获得一个点,而不必创建一个新的点var并不断更新其x和y?

1 个答案:

答案 0 :(得分:2)

试试这个:

// Your display object you want to get the position from
var something:DisplayObject; 

// Retrieve the position as a Point object
var position:Point = something.transform.pixelBounds.topLeft;