- 积分
- 136401
- 注册时间
- 2014-12-27
- 最后登录
- 2026-1-24
- 在线时间
- 605 小时
- 威望
- 562
- 贡献
- 29
- 金币
- 52903
- 钢镚
- 1422
- 交易凭证
- 1
- 分享
- 0
- 精华
- 33
- 帖子
- 2094
- 主题
- 1742
TA的每日心情 | 擦汗 2018-4-10 15:18 |
|---|
签到天数: 447 天 [LV.9]以坛为家II
超级版主
    
- 威望
- 562
- 贡献
- 29
- 金币
- 52903
- 钢镚
- 1422
 
|
AS3错误码
| 错误代码: |
1069 |
| 错误消息: |
在 %t 上找不到属性 %n,且没有默认值 |
| 错误说明: |
在非动态类实例中引用了未定义的属性。例如,当以下代码引用未定义且不能动态创建的 x 属性时,将生成此错误:
class A {} // sealed class, not dynamic
trace(new A().x) // no property x defined on A, and A is not dynamic |
| 消息类型: |
运行时错误 |
本帖最后由 破晓 于 2015-6-5 09:53 编辑
异常信息:
ReferenceError: Error #1069: Property type not found on xxx and there is no default value.
常见案例:
1.使用了未定义的属性,如:
- public class Test()
- {
- public function Test()
- {
- trace(this["aaa"]);
- }
- }
复制代码
解决方案:检查使用的属性是否声明,或者属性名是否拼写正确
|
|