开发者

How can I overcome "Error calling method on NPObject" and Play() a SWF?

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 NPO开发者_运维问答bject!" 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?


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.


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.


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


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).


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜