I want to make something like a command line, the user can write in a command, presses enter (or a button) and if the command ist right, something happens.
But my actor for the text ignores the key down event. I wrote the command, pressed enter, but nothing happend.
You can't compare strings that way, only chars. To do what you want, you need to use strcmp, this ged shows a working example. strcmp takes two strings, and if they are the same, like you want, it gives back a zero. So put that into an if statement, and it will work how you want it to.