我有这段 XML 用于通过 swfmill 创建一个新的 swf 文件:
<?xml version="1.0" encoding="iso-8859-1" ?>
<movie width="300" height="250" framerate="24">
<background color="#ffffff"/>
<frame>
<library>
<clip id="test_swf" import="test.swf"/>
</library>
<place id="test_swf"/>
</frame>
</movie>
我想向这个 swf 传递一些变量,比如文本和图像,以便在舞台上加载,就像使用 FlashVars 可以做的那样:<param name=FlashVars value="oneText=Hello%20World&oneImage=image.jpg" />
谢谢!
小更新:
我试图将参数作为 GET 变量提供,如下所示
<clip id="test_swf" import="test.swf?theValue=Hello%20World"/>
但它不起作用,并且在编译时出现此错误:
WARNING: Cannot import test.swf?oneValue=Hello%20World (unknown extension), skipping.
第二次更新
经过一番搜索,我找到了一种方法来建立将变量传递给 swfmill 输出 swf 中的嵌入式 SWF 的正确方法。当然,使用@little update 的方法是非常错误的。
现在 xml 代码如下所示:
<?xml version="1.0" encoding="iso-8859-1" ?>
<movie version="8" width="600" height="400" framerate="24">
<background color="#000000"/>
<frame>
<library>
<clip id="main" import="test.swf"/>
</library>
<DoAction>
<actions>
<Dictionary>
<strings>
<String value="_global"/>
<String value="aa"/>
<String value="Hello world"/>
<String value="bb"/>
<String value="image.jpg"/>
</strings>
</Dictionary>
<PushData>
<items>
<StackDictionaryLookup index="0"/>
</items>
</PushData>
<GetVariable/>
<PushData>
<items>
<StackDictionaryLookup index="1"/>
<StackDictionaryLookup index="2"/>
</items>
</PushData>
<SetMember/>
<PushData>
<items>
<StackDictionaryLookup index="0"/>
</items>
</PushData>
<GetVariable/>
<PushData>
<items>
<StackDictionaryLookup index="3"/>
<StackDictionaryLookup index="4"/>
</items>
</PushData>
<SetMember/>
<EndAction/>
</actions>
</DoAction>
<place id="main" />
</frame>
</movie>
我的动作脚本(AS 2.0)如下所示:
_root.text_input.text = _global.aa;
loadMovie( _global.bb ,dropzone,'GET');
trace (_global.aa+' '+_global.bb);
我通过使用swfmill swf2xml test2.swf
where test2.swf 获得了您在 xml 中看到的数据结构,其中包含第一帧上的休闲声明:
_global.aa = 'Hello world';
_global.bb = 'someimage.jpg';
不知何故,即使这看起来不错,变量似乎也不能用作全局变量。