admin管理员组文章数量:1240584
I am trying to call a Actionscript function from javascript but I am having problems in Internet Explorer. I am using Swiff.remote in mootools 1.2.1 to call the actionscript function ie:
Swiff.remote(playSwf.toElement(), 'sendResult', result, plays, name);
This all works fine in FireFox, Safari and Opera but I'm getting an "unspecified" error in Internet Explorer 6 and 7. I have tried using the bog standard:
window['flash'].sendResult(result, plays, name);
To no avail.
Thanks for any help. Mark
I am trying to call a Actionscript function from javascript but I am having problems in Internet Explorer. I am using Swiff.remote in mootools 1.2.1 to call the actionscript function ie:
Swiff.remote(playSwf.toElement(), 'sendResult', result, plays, name);
This all works fine in FireFox, Safari and Opera but I'm getting an "unspecified" error in Internet Explorer 6 and 7. I have tried using the bog standard:
window['flash'].sendResult(result, plays, name);
To no avail.
Thanks for any help. Mark
Share Improve this question asked Nov 18, 2008 at 18:47 MarkMark 06 Answers
Reset to default 5I'm not familiar with the Swiff plugin, but you don't need a plugin to call flash functions from Javascript. It's even easier to do it natively.
From AS:
//1. calling javascript function from Flash.
ExternalInterface.call("sendData",tempStr);
// argument 1: javascript function, argument 2: data/variables to pass out.
//2. calling javascript function from Flash with recursion.
var returnValue:String = ExternalInterface.call("sendReturn",tempStr).toString();
//3. setting up a callback function for javascript
ExternalInterface.addCallback("callFlash",flashResponse);
// argument 1: function name called by javascript, argument 2: function on the Flash side.
// AS2 version looks like this : ExternalInterface.addCallback("callFlash",null,flashResponse);
From JS:
//1. javascript function as called from Flash.
function sendData(val){
alert(val);
document.flashForm.flashOutput.value = val;
}
//2. javascript function with recursion.
function sendReturn(val){
var tempData = "Hello from JS";
return tempData + ' :return';
}
//3. calling Flash function with javascript.
function sendToFlash(val){
window['flash'].callFlash(val);
}
Ah, here is the answer to you problem.
<form>
<input type="button" onclick="callExternalInterface(id)" value="Call ExternalInterface" />
</form>
<script>
function callExternalInterface(id) {
thisMovie("externalInterfaceExample").callAS(id);
}
function thisMovie(movieName) {
if (navigator.appName.indexOf("Microsoft") != -1) {
return window[movieName]
}
else {
return document[movieName]
}
}
</script>
SO if the client is Internet Explorer, you should be fetching the movie from the document object. :-)
Wanted to post this answer, as this may be what's causing problems for others, obviously this is not causing your problem. Still looking into a solution for your issue.
From the MooTools Docs: http://mootools/docs/Utilities/Swiff Note:
The SWF file must be piled with the ExternalInterface ponent. See the Adobe documentation on External Interface for more information.
Action Script 2.0
import flash.external.*;
Action Script 3.0
package
{
import flash.external.ExternalInterface;
public class Main
{
}
}
Maybe this can help you out, looks like a similar problem but using the swfobject.
http://blog.deconcept./swfobject/forum/discussion/1064/swfobject-21-problems-with-externalinterface-in-ie/
Good luck.
You can call it directly:
playSwf.remote('sendResult', result, plays, name)
Of course sendResult
has to be registered with ExternalInterface.addCallback()
in the AS code and the flash file has to fully loaded (otherwise all calls fail).
An example can be found in this github repository (fancyupload): The as3proj contains the AS source, the JS remote calls are in Swiff.Uploader.js.
If your code works in all browsers except Internet Explorer, it's a good bet that it's because the Flash Player for IE is an ActiveX plugin. I read somewhere that ActiveX municates in .NET format and Flash's external API municates in XML.
I'm also trying to learn Javascript-Flash munication on Internet Explorer, so I'll keep you folks posted on what I learn.
本文标签: Javascript to flash communicationStack Overflow
版权声明:本文标题:Javascript to flash communication - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740022351a2220840.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论