I am getting the HRESULT E_FAIL error when trying to access a method in an AS3 .swf file, running as an AxShockwaveFlashObject component inside a Winform.
The flash component can communicate with C# through Externalinterface just fine, but sendin from C# to Flash has been impossible so far.
The error seems to be generic and meaningless, as I've found lots of unanswered questions. I will try nevertheless for this specific scenario:
C#
String method = "<invoke name=\"NewFilename\" returntype=\"xml\"></invoke><arguments></arguments>";
mainFlashControl.CallFunction(method);
AS3
public function Main():void
{
if (stage) init();
else addEventListener(Event.ADDED_TO_STAGE, init);
}
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
if (ExternalInterface.available)
{
ExternalInterface.addCallback("NewFilename", NewFilename);
}
}
public function NewFilename():void
{
// Do Something...
}
UPDATE: All I've been able to find is a workaround that checks every time interval for any function waiting to be called, by making a call (from AS3 to C#) and reading the response. However, I also can't get the response to return anything. I've used flashComponent.setResponseValue("test"); and on the flash side the Externalinterface.Call() always returns null.
UPDATE: I've also looked into FSCommand now, also works form AS3 to C# but there doesn't seem to be any way for me to attach a return value to it either...
addCallbackis actually being executed? – Cameron Dec 5 '12 at 3:52