C # Flash - ExternalInterface

We host an ActiveX control in a WinForms application for embedding flash.

Is there a good way to get a list of visible ExternalInterface functions available for any given SWF file?

We work with a third-party SWF file and do not have access to the source.

If this is not possible from C # (or code), is there a tool out there that can do this?

ANSWER: The only way I found is to use a flash decompiler, and then search for the string:

ExternalInterface.addCallback("methodName", methodName);

I mark the main answer as an answer to help.

+3
source share
2 answers

, Flash "API" .

+2

FLASH_CALL Flash ActiveX XML : .

0

Source: https://habr.com/ru/post/1730126/


All Articles