2013-12-23 41 views
0

主應用程序檢測事件我有2個單獨的的Flex 4個項目,同一框架不同的服務器上運行Flex 4中的SWFLoader - 從遠程子應用程序的swf

1)MainApp(IP:192.168.12.113:8080)

2)SubApp(IP:192.168.10.19:5080)

我需要SubApp融入MainApp,我已經成功地做到這一點使用SWFLoader。

//MainApp/mainapp.mxml 
<s:SWFLoader id="contentLoader" 
      loadForCompatibility="true" 
      trustContent="true" 
      source="http://192.168.10.19:5080/SubApp.swf"/> //Using url 

現在,我需要的SubApp點擊一個特定的按鈕時通知MainApp,以便MainApp可以執行某些功能(例如打開/關閉滑動窗口)。我該怎麼去做呢?

另外,爲了澄清一下,這種設置被認爲是多版本遠程沙箱?這兩個應用程序都是可信賴的並且應該可以通過訪問其他變量/函數

非常感謝幫助。謝謝。

回答

相關問題