vote up 0 vote down star

HI,

im trying to call a javascript function from my actionscript code but its not working;

as3:

if (ExternalInterface.available)
  {
  try
  {
    ExternalInterface.addCallback("changeDocumentTitle",null);
  } 
  catch(error:Error)

js (inside velocity file using swfobject)

function changeDocumentTitle() 
    {
        alert('call from SWF');
    }

anyone know what could be happenin?

flag

Is this just happening locally? Does it happen on the web? – quoo May 19 at 16:21
its happening running on websphere server – ccdugga May 19 at 16:26
I'd try moving the js function to the same html or whatever file where the swf is embeded to see if that works. If it does, then maybe your external js isn't getting included. – quoo May 19 at 16:42

2 Answers

vote up 5 vote down check

If you are trying to invoke a JS function from within your Flex app, you want to use ExternalInterface.call(...) and not ExternalInterface.addCallback(...). From the docs:

public static function call(functionName:String, ... arguments):*

Calls a function exposed by the Flash Player container, passing zero or more arguments. If the function is not available, the call returns null; otherwise it returns the value provided by the function. Recursion is not permitted on Opera or Netscape browsers; on these browsers a recursive call produces a null response. (Recursion is supported on Internet Explorer and Firefox browsers.)

If the container is an HTML page, this method invokes a JavaScript function in a script element.

http://livedocs.adobe.com/flex/3/langref/flash/external/ExternalInterface.html

addCallback() is used if you want to expose an ActionScript function from your Flash app to the HTML container so that it can be invoked via JavaScript.

link|flag
1  
hah, i can't believe i missed that when reading the question. – quoo May 20 at 0:39
vote up 0 vote down

On the local system, communication between the SWF and Javascript tends to be hampered by security issues. You can reconfigure your flash to allow some of these communications via the "settings manager".

It may also be an issue with "allowscriptacces" not being set where you embed the flash object.

Another problem may be that flash tries to call javascript before the javascript is loaded. The init order thing can be quite annoying.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.