在舞台周围绘制边框的最简单方法?

发布于 2024-07-14 01:05:48 字数 84 浏览 6 评论 0原文

AS 3 中似乎没有 stage.border 属性?

我的类扩展了 Sprite,在 Flash 对象周围绘制边框的最佳方法是什么?

there seem to be no stage.border property in AS 3?

my class extends Sprite, what is best way to draw border around flash object?

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

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

发布评论

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

评论(3

东北女汉子 2024-07-21 01:05:48

this.graphics.lineStyle(0,0x555555,0.5);
this.graphics.drawRect(0,0,this.width,this.height);

其中“this”是你的 Sprite 对象。

this.graphics.lineStyle(0,0x555555,0.5);
this.graphics.drawRect(0,0,this.width,this.height);

where "this" is your Sprite object.

安穩 2024-07-21 01:05:48

OXMO456 的代码有一个拼写错误。 下面是固定版本:

this.graphics.lineStyle(0,0x555555,0.5);
this.graphics.drawRect(0,0,this.width,this.height);

另外,我应该提到,应用程序启动时 this.width 和 this.height 都以 0 开头,因此将上面的代码放在主 MovieClip 的构造函数中不会执行任何操作 - 它会绘制一个 0 × 0 大的矩形。 一种解决方法是将上面的代码放入 ADDED_TO_STAGE 事件处理程序中。

OXMO456's code has a typo. Below is the fixed version:

this.graphics.lineStyle(0,0x555555,0.5);
this.graphics.drawRect(0,0,this.width,this.height);

Also, I should mention that this.width and this.height both start as 0 when the application starts, so putting the code above in the constructor of the main MovieClip won't do anything -- it will draw a rectangle 0 by 0 large. One work around would be to put the code above in a ADDED_TO_STAGE event handler.

旧伤还要旧人安 2024-07-21 01:05:48

使用过滤器。 请参阅

Use a filter. See this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文