TypeError:错误#1006:myInitializer 不是函数。 -AS3

发布于 2024-09-11 12:14:13 字数 589 浏览 9 评论 0原文

我在开发 Flash 应用程序时遇到了困难。每次我运行代码时,都会出现这个错误。

TypeError:错误#1006:myInitializer 不是函数。

我非常确定我的 myInitializer() 函数确实是一个函数:

public class newClass extends MovieClip {
    public function newClass() {
    this.width = this.width;
    this.height = this.height;
    }

    public function myInitializer(initX:Number, initY:Number):void {
        this.y = initY;
        this.x = initX;
    }
}

这就是我从另一个文件中调用它的方式:

myClass = new newClass();
myClass.myInitializer(161, 380); 

对此有什么想法吗?

I'm having a difficult time working on my flash application. Everytime I run my code, this error bumps at me.

TypeError: Error #1006: myInitializer is not a function.

I am quite sure that my myInitializer() function is indeed a function:

public class newClass extends MovieClip {
    public function newClass() {
    this.width = this.width;
    this.height = this.height;
    }

    public function myInitializer(initX:Number, initY:Number):void {
        this.y = initY;
        this.x = initX;
    }
}

and this is how I call it from another as file:

myClass = new newClass();
myClass.myInitializer(161, 380); 

any thoughts about this?

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

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

发布评论

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

评论(1

酒中人 2024-09-18 12:14:13

这是拼写错误吗?

myClasss.myInitializer(161, 380);

Is that a Typo ?

myClasss.myInitializer(161, 380);

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