My program is windows forms application with swf inside it. I have such c# code:
string invokeXmlString = "<invoke name=\"" + methodName + "\" returntype=\"xml\"><arguments><string>" +
response + "</string></arguments></invoke>";
if ( !string.IsNullOrEmpty( this.FlashApplication.Movie ) )
{
this.FlashApplication.CallFunction(invokeXmlString);
}
And I'm getting System.AccessViolationException
on this line:
if ( !string.IsNullOrEmpty( this.FlashApplication.Movie ) )
Can someone help me with solving this issue? Or at least pointing me where can I find solution to this.
Thanks in advance!