加载和实例化 SWF 时出现类型强制错误
我正在将一个 swf“ImageEdit”加载到另一个 swf“Shell”中。我实例化 ImageEdit
var ClassReference:Class=imageEditApplicationDomain.getDefinition("ImageEdit") as Class;
var instance:MovieClip=new ClassReference();
但是,出现错误:
TypeError:错误#1034:类型强制失败:无法将 flash.display::MovieClip@3b678b31 转换为 fl.controls.Slider
ImageEdit 在单独运行且未加载到 Shell 中时不会引发错误。我添加了:
import fl.controls.Slider
到 Shell 和其他没有帮助的东西。这两个 SWF 文件都在其库中包含滑块组件。我正在使用 Flash Professional CS5.5。
我怎样才能摆脱强制错误?
I am loading a swf, "ImageEdit" into another swf, "Shell". I instantiate ImageEdit with
var ClassReference:Class=imageEditApplicationDomain.getDefinition("ImageEdit") as Class;
var instance:MovieClip=new ClassReference();
However, I get an error:
TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@3b678b31 to fl.controls.Slider
ImageEdit does not throw an error when run by itself and not loaded into Shell. I've added:
import fl.controls.Slider
to Shell and other things which didn't help. Both SWFs contain the Slider component in their libraries. I am working Flash Professional CS5.5.
How can I get rid of the coercion error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 MovieClip 替换为 Sprite 或 * 或忽略该类型。
Replace MovieClip with Sprite or * or leave the type out.