标签: jquery actionscript-3
如何从Flash触发自定义jQuery事件,通过事件对象传递一些数据?
答案 0 :(得分:0)
如果您可以使用JavaScript触发它,只需使用ExternalInterface.call.
答案 1 :(得分:0)
如果我从AS3向JS传递字符串,那么这是我使用的代码:
ExternalInterface.call("showBox",as3String);
然后你会从JS那里得到:
function showBox(myString){ }