0
大家好,我猜我一直很愚蠢,但我一直在試圖弄清楚這一點,我是新的js我需要幫助如何從JavaScript函數執行下面的代碼時,身體卸載這是一個Flash功能,但我希望它從一個JS功能執行請幫助。從javascript執行的Flash函數
public function save():Boolean {
ExternalInterface.call(this.eventHandler, RecorderJSInterface.SAVE_PRESSED, this.recorder.currentSoundName);
try {
_save(this.recorder.currentSoundName, this.recorder.currentSoundFilename);
ExternalInterface.call(this.eventHandler, RecorderJSInterface.SAVING, this.recorder.currentSoundName);
} catch(e:Error) {
ExternalInterface.call(this.eventHandler, RecorderJSInterface.SAVE_FAILED, this.recorder.currentSoundName, e.message);
return false;
}
return true;
}
任何人的幫助球員請 – pumba