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.
source
share