JavaScriptからActionScript内の関数を呼び出そうとしていますが、別のフラッシュファイルでこれを正常に実行できましたが、現状では何らかの理由で失敗しています。私は、これは私のJSコードで、jQueryのSWFEmbedを使用しています:ExternalInterfaceコールバックが機能しません
$.ajax({
url: '<?php echo $html->url(array('controller' => 'voicenotes', 'action' => 'get_url'), true);?>' + '/' + container.children('#VoicenoteVnid').val(),
dataType: 'json',
type: 'POST',
success: function(response) {
container.children('.voicenote-info').children('.player').addClass('active');
flashMovie = container.children('.voicenote-info').children('.player');
alert(flashMovie.html());
flashMovie.flash({
swf: '<?php echo $html->url('/files/flash/reproductor_compact.swf',true); ?>',
width: 240,
height: 40,
quality: "high",
wmode: "transparent",
allowscriptaccess: "always",
});
alert($('.player.active > object')[0].callIt());
}
});
そして、ここでは私のASコードがあり、これは私のコンストラクタである:
public function reproductor()
{
ExternalInterface.addCallback("callIt", test);
ExternalInterface.call("alert", "Que fue?");
trace(ExternalInterface.available);
}
そして、これは私の関数である:
private function test():String {
return "this is a test";
}
ExternalInterface.callが動作し、トレース出力が真の場合、何が起こっているのかわかりません。
P.S:ExternalInterfaceコールバックにパラメータを渡す方法を教えていただけたら、私はそれを感謝します。