加载和实例化 SWF 时出现类型强制错误

发布于 2024-11-27 06:01:01 字数 568 浏览 0 评论 0原文

我正在将一个 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 技术交流群。

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

发布评论

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

评论(1

自控 2024-12-04 06:01:01

将 MovieClip 替换为 Sprite 或 * 或忽略该类型。

Replace MovieClip with Sprite or * or leave the type out.

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