我有一个flex应用程序,并且flex app中有一个Iframe(HTML代码)。如何从iframe触发事件并在flex应用程序中监听它,或者从iframe中的JS调用Flex应用程序中的AS方法?我还需要将一些信息传递给父Flex应用程序。
答案 0 :(得分:0)
您可以使用ExternalInterface(http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html)。
例如,要调用方法try:
if (ExternalInterface.available) {
ExternalInterface.call("myMethod", { id: 'somedataID' } );
}