当我添加错误的内容时,我有旧的swf文件。我的文件包含以下代码
if((parent && parent.parent)
&& (parent.parent.my_Object)
&& (parent.parent.my_Object.hasOwnProperty("InformationData")))
我已经导入了以下代码的文件。
instreamObject = EW.root.parent.parent["my_Object"];
其中var instreamObject:Object = null;
如何删除错误
Type 1119: Access of possibly undefined property my_Object through a reference with static type flash.display:DisplayObjectContainer
我的旧swf正在使用my_Object
,但在添加了一些没有问题的代码后,我收到了undefined property my_Object
错误。
我该如何删除错误。请帮忙。