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);
|
Can I use ExternalInterface to call a namespaced JavaScript function?
| |||
|
feedback
|
|
The documentation of
is equivalent to
so you may just as well do the following
this technique is sometimes used for Flash JS injection. hope this clarifies things ... ;) greetz back2dos | |||
|
feedback
|
|
Yes. Yes you can. | |||
feedback
|