How can I call an Actionscript function when the .swf is referenced by jQuery?

六月ゝ 毕业季﹏ 提交于 2019-12-10 10:35:17

问题


I have an .swf that I am embedding into HTML using the jQuery SWF Object plugin (http://jquery.thewikies.com/swfobject). I have a number of functions within the .swf that I need to call from within javascript functions. I've made these actionscript functions accessible to javascript by calling flash.external.ExternalInterface.addCallback(). Yet nothing happens when I make the call. I've had this happen before and it seems to be that when you reference the .swf from jQuery, you can't call flash functions. Is there anyway around this (aside from not using jQuery)?

Thanks.


回答1:


I had the same problem. You can use $('#myflashelement').context.myactionscriptfunction(arg) to fix it. For convenience I made a jQuery 'plugin' to call them and to not rely on context in all of my code:

(function ($) {
    $.fn.callAS = function() {
        var func = arguments[0];
        var args = Array.prototype.slice.call(arguments, 1);
        return this.context[func].apply(this.context, args);
    };
})(jQuery);

You can call it with $('#myflashelement').callAS('myactionscriptfunction', arg).




回答2:


I've never used the jquery swfobject plugin but if you give add an id param in the embed code you can access the the swf through

swf = document.getElementById("player"+i);
swf.callToFlash();



回答3:


$('#myflashElement')[0].myASFunction(var1, var2);

works for me




回答4:


$('#id_you_gave_swfobject').your_externalInterface_callback();

In jQuery



来源:https://stackoverflow.com/questions/1473741/how-can-i-call-an-actionscript-function-when-the-swf-is-referenced-by-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!