TypeError:错误#1006:myInitializer 不是函数。 -AS3
我在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是拼写错误吗?
myClasss.myInitializer(161, 380);
Is that a Typo ?
myClasss.myInitializer(161, 380);