1)flex的原始碼如下
<?xml version="1.0" encoding="utf-8"?>
<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="{this.initApp()}">
<fx:Script>
<![CDATA[
import flash.external.ExternalInterface;
import mx.controls.Alert;
public function myFunc():String {
// Alert.show("myFunc");
return "hello world";
}
public function initApp():void {
ExternalInterface.addCallback("myFlexFunction",myFunc);
}
]]>
</fx:Script>
<fx:Declarations>
<!-- 將非可視元素(例如服務、值對象)放在此處 -->
</fx:Declarations>
<s:Button x="79" y="36" label="按鈕"/>
</s:Application>
2)html的代碼如下:
<html>
<head>
<SCRIPT language='JavaScript' charset='utf-8'>
function myFunc() {
var x = function1.myFlexFunction();
alert(x);
}
</SCRIPT>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="20%" height="20%" id="function1">
<param name="movie" value="function1.swf" />
</object>
</br>
<button onclick="myFunc()">Call App</button>
</body>
</html>