尝试使用 stage.height 放置图形时出现错误
嘿,偷看!我有这个页脚图像,我想将其与舞台底部对齐,但是我遇到了错误。
正如您所看到的,我在构造函数中有一个 ADDED_TO_STAGE 侦听器。
package src.display{
import flash.text.*;
import flash.display.*;
import flash.geom.Matrix;
import flash.events.Event;
public class Frame extends Sprite {
private var footer:Sprite = new Sprite();
// ☼ ------ Constructor
public function Frame():void {
this.addEventListener(Event.ADDED_TO_STAGE, tracer);
}
public function tracer(event:Event) {
trace("Frame added to stage --- √"+"\r");
this.removeEventListener(Event.ADDED_TO_STAGE, tracer);
}
// ☼ ------ Init
public function init():void {
footer.graphics.beginFill(0x000);
footer.graphics.drawRect(0,0,800,56);
footer.graphics.endFill();
footer.y = (stage.height - footer.height); // <-- This Line
addChild(footer);
}
}
如果我注释掉第 26 行,电影将正常工作(但当然我不希望 Y 为 0):
footer.y = (stage.height - footer.height);
这是我在输出窗口中收到的错误:
TypeError: Error #1009:无法访问空对象引用的属性或方法。 在 src.display::Frame/init()[/Users/lgaban/Projects/Player/src/display/Frame.as:26]
更新
回答了我自己的问题,在此处修复
Hey peepz! I have this footer image, that I want to align to the bottom of the stage, however I'm getting errors.
As you can see I have an ADDED_TO_STAGE listener in the constructor function.
package src.display{
import flash.text.*;
import flash.display.*;
import flash.geom.Matrix;
import flash.events.Event;
public class Frame extends Sprite {
private var footer:Sprite = new Sprite();
// ☼ ------ Constructor
public function Frame():void {
this.addEventListener(Event.ADDED_TO_STAGE, tracer);
}
public function tracer(event:Event) {
trace("Frame added to stage --- √"+"\r");
this.removeEventListener(Event.ADDED_TO_STAGE, tracer);
}
// ☼ ------ Init
public function init():void {
footer.graphics.beginFill(0x000);
footer.graphics.drawRect(0,0,800,56);
footer.graphics.endFill();
footer.y = (stage.height - footer.height); // <-- This Line
addChild(footer);
}
}
}
The movie will work correctly if I comment out line 26 (but of course I don't want Y to be 0):
footer.y = (stage.height - footer.height);
Here is the error in the output window I'm getting:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at src.display::Frame/init()[/Users/lgaban/Projects/Player/src/display/Frame.as:26]
UPDATE
Answered my own quesiton, fix here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用自定义事件有点矫枉过正,特别是当您已经将监听器添加到舞台时。我会这样做:
Using a custom event is a bit overkill, especially when you have the listener for added to stage already in there. I would do it like this:
并不是说它是完整的答案,而是该错误告诉您该阶段为空。
Not that it is the complete answer, but that error is telling you that stage is null.