Can I use ExternalInterface to call a namespaced JavaScript function?

//JavaScript
foo.bar = function(baz) {}

// AS3
import flash.external.ExternalInterface;
ExternalInterface.call('foo.bar', baz);
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The documentation of ExternalInterface.call is a little misleading. it states the first parameter must be a function name, which is not the whole truth. it can be any string that can be evaluated as a proprer JS expression. In fact

ExternalInterface.call(func, param_1, ... , param_n);

is equivalent to

eval(func)(param_1, ... , param_n);

so you may just as well do the following

ExternalInterface.call("function (foo) { alert(foo); return true; }","test");

this technique is sometimes used for Flash JS injection. hope this clarifies things ... ;)

greetz

back2dos

link|improve this answer
Ah yes, this does clear it up. Thanks. – Kyle Hayes Feb 10 '10 at 16:20
feedback

Yes. Yes you can.

link|improve this answer
The question was purely theoretical, so in the way that I called it above is correctly for calling a namespaced function? – Kyle Hayes Feb 9 '10 at 17:16
feedback

Your Answer

 
or
required, but never shown

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