如何在 FP9 包装文件中使用 Pixel Bender

发布于 2024-09-26 04:37:50 字数 324 浏览 8 评论 0原文

我们创建嵌入第三方包装 SWF 文件的 Flash 游戏,这些文件导出为 FP9。

如果我创建一个使用 Pixel Bender 类(Shader、ShaderData)的 FP10 SWF,当我在 FP10 播放器内的 FP9 包装器中运行它们时,会抛出错误

VerifyError: Error #1014: Class flash.display::Shader might not be成立。

有没有办法访问这些 FP10 类 - 或者最外层包装器的版本是否决定了子 SWF 可用的内容?这与 applicationDomain 有关吗?

感谢您的帮助, 詹姆斯

We create Flash games which are embedded within third party wrapper SWF files, which are exported for FP9.

If I create an FP10 SWF which uses Pixel Bender classes (Shader, ShaderData), when I run them in an FP9 wrapper within an FP10 player, an error is thrown

VerifyError: Error #1014: Class flash.display::Shader could not be found.

Is there any way to get access to these FP10 classes - or does the version of the outermost wrapper determine what's available to child SWFs? Is this something to do with applicationDomain?

Thanks for any help,
James

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

执手闯天涯 2024-10-03 04:37:50

嗯。我做了类似的事情 - 如果您创建一个包含任何类导入的 SWF 文件,然后从另一个未导入它们的 SWF 文件加载它,您就可以访问这些类。

我不确定是否按照定义(可能会引发编译时错误),但肯定可以获得一个实例(在子 SWF 中定义某些内容,然后通过 MovieClip(theLoader.content).theInstance 访问)。

这里的问题是,本机闪存库可能不包含在内 - 毕竟它们是运行时的一部分。所以 - 尝试实例访问,除此之外,我想不出任何解决方案。

Hm. I did something similar to this - if you make a SWF file with any class import in it, and then load it from another SWF file which doesn't import them, you can access these classes.

I am not sure if by definition (probably would throw compile-time error), but certainly possible to get an instance (define something in the child SWF and then access by MovieClip(theLoader.content).theInstance).

The problem here is the fact that the native flash libraries might not be included - they are a part of the runtime after all. So - try the instance access, other than that, I can not think of any solution.

羁拥 2024-10-03 04:37:50

我在 kirupa.com 上从 senulous 得到了明确的答案 - 不可能在 FP9 包装器中使用 FP10 类

初始 SWF(实例化播放器的 SWF)决定向所有后续 SWF 公开的 API。如果您加载了 SWF 9、SWF 10 内容的包装器,则该内容将仅具有对 SWF 9 API 的 API 访问权限。这是设计使然。

http://www.kirupa.com/forum/showthread.php?t=355224

I got a definitive answer from senocular over at kirupa.com - it's not possible to use FP10 classes within a FP9 wrapper

The initial SWF - the SWF that instantiated the player - determines the API exposed to all subsequent SWFs. If you have a wrapper SWF in 9, SWF 10 content loaded into it, that content will have API access to SWF 9 APIs only. This is by design.

http://www.kirupa.com/forum/showthread.php?t=355224

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