How can I overcome “Error calling method on NPObje

2019-07-20 22:23发布

I am working on a quiz system. Normally it uses jpeg images with each question. But a few of the quizzes instead feature animated .SWF files. I want to use jquery swfobject to call the play() method, once the user has clicked on an answer.

My solution works fine locally, but when I try to run it online, it throws the "Error calling method on NPObject!" message.

The quiz HTML is located on www.somedomain.com and the SWFs are on images.somedomain.com. So, I'm guessing this is a cross-domain thing.

Trouble for me is, I don't know anything about Flash... how to edit SWF files, anything about Flash attributes, or the like.

Here's an example of my code:

<div class="photos">
    <object data="http://images.somedomain.com/q1tattooquiz.swf" type="application/x-shockwave-flash" width="600" height="350">
        <param name="movie" value="http://images.somedomain.com/q1tattooquiz.swf">
        <param name="wmode" value="opaque">
    </object>
</div>

And the javascript:

if (hasFlash) {
    $('#question'+quesNum+' .photos').flash(function() { this.Play(); } );
    }

It's pretty simple, and as I said, it works fine on my PC. But once uploaded, it errors out.

What can I add to my javascript to make these files work right?

5条回答
Rolldiameter
2楼-- · 2019-07-20 22:46

Kirkman14,

Apart from the allowScriptAccess thingy, make sure you are calling the functions with the correct number of parameters, matching AS declaration. If your AS declares:

function playSound(event:MouseEvent):void{
// code here
}

then make sure you use the function accordingly playSound(null). I've been through this myself.

查看更多
Melony?
3楼-- · 2019-07-20 22:47

You could try setting allowscriptaccess to "always". allowscriptaccess is the same kind of parameter as wmode in your sample code.

查看更多
乱世女痞
4楼-- · 2019-07-20 22:48

For me, this issue arose because, in Flex, I'd set to static a function that bore ExternalInterface calls. If the problem function is static, try undoing that.

查看更多
叼着烟拽天下
5楼-- · 2019-07-20 22:51

I think there isn't a way to avoid changing the SWF. You need to put this line in Flash: flash.System.Security.allowDomain('*'); This is only needed it you are trying to call a function in the SWF from JS. For the opposite direction, also set allowScriptAccess to always in your embed code. Note that this param might be case-sensitive, if I remember correctly.

查看更多
神经病院院长
6楼-- · 2019-07-20 22:56

It was suggested to me to create crossdomain.xml files that whitelist domains the flash will communicate with. I haven't had any success with this yet though (but perhaps my problem is different from yours).

查看更多
登录 后发表回答