0

我使用本地共享对象作为在同时运行的两个 swf 之间传输数据的手段。

so = getLocal("mySO");

// set the value from a user input, and set it to 'connected'
so.setProperty(txtName.text, "connected")

// every few seconds check if the other SWF started and modified value
onTimer 
{
 var data:Object = so.data
// breakpoint and inspect the data with debugger
}

最后注释的行是问题所在。在调试器中,没有检测到对数据的更改,但是在使用 .minerva 检查 .sol 文件时,我看到了两个 SWF 的更改。因此,尽管 SWF 2 修改了共享对象,但 SWF 1 看不到这些更改。这是应该的吗?

ps:我知道我可以使用 LocalConnection 在两个正在运行的 SWF 之间进行通信,但如果有某种限制,我仍然想了解 SO。

更新:

从磁盘运行编译的 Flex 应用程序两次,将“swf2”放入第二个的文本字段。两个都按开始。启动的第一个永远不会检测到第二个已连接。

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" 
               minWidth="955" 
               minHeight="600"
               creationComplete="application1_creationCompleteHandler(event)"
               >

    <fx:Script>
        <![CDATA[
            import mx.events.FlexEvent;

            private var timer:Timer;
            private var so:SharedObject;

            protected function application1_creationCompleteHandler(event:FlexEvent):void
            {
                so = SharedObject.getLocal("mySO");

                timer = new Timer(1000);
                timer.addEventListener(TimerEvent.TIMER, onTimer);

            }

            protected function button1_clickHandler(event:MouseEvent):void
            {
                so.setProperty(txtSwf.text, 'connected');
                so.flush();
                timer.start();

            }


            protected function onTimer(event:TimerEvent):void
            {
                so = SharedObject.getLocal("mySO");
                txtLog.text += so.data["swf1"] + "\n";
                txtLog.text += so.data["swf2"] + "\n";
                txtLog.text += "------------ \n";

            }

        ]]>
    </fx:Script>

    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:TextInput id="txtSwf" x="10" y="50" text="swf1"/>
    <s:Button x="170" y="50" label="Start" click="button1_clickHandler(event)"/>
    <s:TextArea id="txtLog" x="10" y="154" width="279" height="112" />


</s:Application>
4

2 回答 2

0

您需要强制读取文件,而不是客户端已经拥有的数据:/

so = getLocal("mySO");

// set the value from a user input, and set it to 'connected'
so.setProperty(txtName.text, "connected")

// every few seconds check if the other SWF started and modified value
onTimer 
{
    so = getLocal("mySO"); // read the so file.

    var data:Object = so.data
}
于 2012-06-18T07:25:29.113 回答
0

呼,找到答案了。Jevgeenij 引导我强制重新读取共享对象,但他的代码无法正常工作。我需要补充的是这个。

so = getLocal("mySO");

// set the value from a user input, and set it to 'connected'
so.setProperty(txtName.text, "connected")

// every few seconds check if the other SWF started and modified value
onTimer 
{
    so = getLocal("mySO"); // read the so file.

    var data:Object = so.data;

    so = null // MAKE IT NULL AND HOPE IT'S GC'D BEFORE NEXT TIMER
}

诀窍是在使用后将其设置为 null,然后才强制重新读取它并拾取从其他 SWF 实例写入的值。

于 2012-06-19T02:48:44.773 回答