在舞台周围绘制边框的最简单方法?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
OXMO456 的代码有一个拼写错误。 下面是固定版本:
另外,我应该提到,应用程序启动时 this.width 和 this.height 都以 0 开头,因此将上面的代码放在主 MovieClip 的构造函数中不会执行任何操作 - 它会绘制一个 0 × 0 大的矩形。 一种解决方法是将上面的代码放入 ADDED_TO_STAGE 事件处理程序中。
OXMO456's code has a typo. Below is the fixed version:
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.
使用过滤器。 请参阅此。
Use a filter. See this.