How to simulate clicking "Enter" in game's window? [modified]
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I am creating simple application for some mmorpg that doesn't support macross. This application uses shortkeys ALT+F1,2,3... I want to execute "/hello" emotion by clicking ALT+F1. For hotkey I use this application - http://www.codeproject.com/KB/miscctrl/systemhotkey.aspx (It works in background) I try to use this function: SendKeys.Send("{Enter}{Divide}" + "hello" + "{Enter}"); but game's window doesn't receive this {Enter}. How can I simulate clicking "Enter" in game's window?
modified on Sunday, February 22, 2009 1:51 PM