.[Edited on July 29, 2011 at 11:13 PM. Reason : .]
7/29/2011 10:59:25 PM
you can leave the post up, you know? other people like to talk about programming stuff
7/29/2011 11:24:25 PM
awh, I wanted to help.
7/30/2011 8:41:08 AM
7/30/2011 8:49:14 AM
printf(" ");
7/30/2011 2:33:58 PM
lol... it was a silly syntax mistake, but was giving me seg. fault errors. I felt like a n00b that I posted it to begin with, so I figured I'd remove it to refrain from ridicule. Granted, TT is the much more mature sub-forum on TWW. If anyone has questions with C programming, consider this a free thread. I will likely be revisiting this thread in the future.
7/30/2011 7:35:58 PM
I support this thread. Someone, hurry up and need some more quick help!
7/31/2011 12:40:18 AM
I'm having difficulty communicating between a C# application and a nested Flash application. Does anyone have any sample programs or reference material?
7/31/2011 8:42:43 AM
int main(){for(int i=0,int *p=&i;p>0;*p=(int)p,p--);return 0;}
7/31/2011 8:47:33 PM
C# != C, dawg. But I suppose I'll still help.What are you trying to do with the Flash object? As long as it isn't too crazy, the Flash COM object should be pretty self-explanatory...I'm assuming you already know about the ExternalInterface class.
8/1/2011 6:02:09 PM
The problem I expect to be having is that I myself don't know Flash, but I need to get the communication working before handing the project off to the guy that knows Flash, because he doesn't know any C.
8/1/2011 6:07:38 PM
You basically use CallFunction in AxShockwaveFlash to call methods from C# you define in AS. It takes an XML string as an argument where you specify the parameters.For the other way around, create an event handler for the FlashCall event on your SWF object. It'll get an XML string as part of the event params that you have to parse and do whatever it is you want to do.What's not working about it?
8/1/2011 6:37:42 PM
^^^is it all ActionScriptI mean that's very much like Javascript, because both are dialects of ECMAScript[Edited on August 1, 2011 at 8:19 PM. Reason : also FTR C# is much more like Java than like C, its distant ancestor
8/1/2011 8:18:42 PM