使用 AS3 在舞台上显示对象坐标..?

发布于 2024-12-11 12:02:23 字数 109 浏览 0 评论 0原文

我对 ActionScript 完全陌生,所以请理解我不知道从哪里开始。

我需要在舞台上显示对象在屏幕上移动时的坐标。

非常感谢任何帮助!

谢谢, 亚历克斯

I am completely new to ActionScript so please understand that I do not know where to begin with this.

I need to show a an objects coordinates on stage as it moves across the screen.

Any help is much appreciated!

thanks,
Alex

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹊巢 2024-12-18 12:02:23

这是一个简单的方法,您当然可以更详细地了解它,例如在更新 TextField 文本值之前检查值是否已更改(即对象正在移动)。您甚至可以使用两个 TextField,一个用于 x 位置,另一个用于 y 位置。

您可以使用另一种类型的事件侦听器,这取决于是什么使您的对象移动......

var object:MovieClip = new MovieClip();
var textfield:TextField = new TextField();

object.addEventListener( Event.ENTER_FRAME , positionListener );

function positionListener( event:Event ):void
{
   textfield.text = "x:" + object.x.toString() + "| y:" + object.y.toString();
}

Here's a simple approach, you could of course get more detailed with it, for instance check that a value has changed ( i.e. the object is moving ) before updating the TextField text value. You could even use two TextFields, one for the x position, the other for the y.

You may use another type of event listener , it would depend on what makes your object move...

var object:MovieClip = new MovieClip();
var textfield:TextField = new TextField();

object.addEventListener( Event.ENTER_FRAME , positionListener );

function positionListener( event:Event ):void
{
   textfield.text = "x:" + object.x.toString() + "| y:" + object.y.toString();
}
薆情海 2024-12-18 12:02:23

谢谢!

解决方案:

addEventListener(Event.ENTER_FRAME, show);
function show(evt:Event):void{
  coords_txt.text = object1.x+" - "+object1.y
}

thanks!

solution:

addEventListener(Event.ENTER_FRAME, show);
function show(evt:Event):void{
  coords_txt.text = object1.x+" - "+object1.y
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文