我想在從actionscript調用js函數時將js函數的結果傳遞到actionscript。 js解析url並返回url中的var。 ActionScript中的函數聲明:Flash CS4將變量從javascript函數傳遞給actionscript並返回
function gup(name1:String) :void {
flash.external.ExternalInterface.call("gup", name1);
}
function printAlert(group2:String) :void {
flash.external.ExternalInterface.call("printAlert", group2);
}
後來在行動我打電話GUP(),它應該返回我轉身和打印作爲警告,以檢查值有什麼變種。 「group」是我希望從url中獲得的用於在swf中分支的var的名稱。如果我只是定義哪個羣組警報工作正常。試圖讓JS的返回值函數的警報值爲null
var whichGroup = gup("group");
printAlert(whichGroup);
是'printAlert'和'gup'功能的定義JavaScript的?你的函數似乎並沒有處理js函數的返回值 – Amarghosh 2010-09-01 04:12:07