如何从 swf 文件中提取动作脚本类?
当我尝试从 .swf
(来自 硕思 SWF 反编译器)中提取 .fla
和 .as
时,这些类文件 .as
中都是数字,如下所示:
aso#33082.onPress = function ()
{
或者
function ()
{
for (aso#88375 = 0; aso#88375 < 1000; aso#88375++)
{
delete eval("_root.map.arrows.arrow" + aso#88375).onEnterFrame;
}
为什么会有这些数字? 有什么方法可以正确提取类吗?
谢谢你!
when I try to extract .fla
and .as
from .swf
(from Sothink SWF Decompiler), the classes in the file .as
are all numbers, like this:
aso#33082.onPress = function ()
{
or
function ()
{
for (aso#88375 = 0; aso#88375 < 1000; aso#88375++)
{
delete eval("_root.map.arrows.arrow" + aso#88375).onEnterFrame;
}
why there are those numbers?
is there any way to extract the classes correctly?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会,一旦在发布模式下编译 SWF,此信息就会丢失。
No, this information is lost once the SWF is compiled in release mode.