vote up 2 vote down star

I'm trying to automate some stuff on a flash game running in a webbrowser control in my C# program. Using user32's sendmessage dll I've been able to click at coordinates on regular pages such as google but it doesn't work on flash content. Any ways I can do this? Also it cannot be detectable to the flash game. I have a working one in autoit but I'd like to rewrite it in c# and make it work minimized.

flag

lancelarsen.com/Blog/tabid/… This was actually more helpfull than the answer I accepted – Jean-Bernard Pellerin May 12 at 20:36
playing EVONY or something else? ;) – Christopher Klein Aug 6 at 13:38
something else, all the semi nude computer girls on the adds for evony made me not even want to see what it was aobut.. – Jean-Bernard Pellerin Aug 9 at 20:44

4 Answers

vote up 1 vote down check

Why not just call your Autoit/Autohotkey script from your C# program using the System.Diagnostics.Process class?

ProcessStartInfo psi = new ProcessStartInfo("your_script.ahk");
psi.CreateNoWindow = true;

Process procScript = Process.Start(psi);
procScript.WaitForExit();

Notice the CreateNoWindow=true to ensure it runs hidden, and the WaitForExit(), to make your code wait for the process to return.

AutoIt and AutoHotkey have some very powerful automation commands that have been refined over the years. It's very hard to reproduce similar C#/.NET functionality that is just as reliable, believe me I've tried.

link|flag
vote up 1 vote down

Using SendMessage or PostMessage will work. You need to send 3 messages, WM_MOUSEMOVE, then WM_MOUSEDOWN, then WM_MOUSEUP. The WM_MOUSEMOVE must indicate a location different from the WM_MOUSEDOWN and WM_MOUSEUP. WM_MOUSEDOWN and WM_MOUSEUP should be in the same location. Works for me.

link|flag
vote up 1 vote down

Ranorex might be very interesting for. You can easily capture/replay your flash and web application UI tests, edit your actions and generate a fully functional C# code.

www.ranorex.com

link|flag
vote up 2 vote down

Check out WatiN. Powerful browser automation, compatible with C#:

http://watin.sourceforge.net/

link|flag
Great tool. Thank you. – Robert Venables May 9 at 14:55
Yeah, WatiN is great... try that if the selected answer doesn't work for you. – Jeff Wilcox Aug 6 at 13:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.