OK sorry its solved
Just set the gui "persistent" and put the code on "on key pressed" :
Code: ags
Just set the gui "persistent" and put the code on "on key pressed" :
if (keycode==233) { //for exempl the french "a" with an accent
String text = mycontrol.Text;
text = text.Append("x"); // x is the character
mycontrol.Text = text;
}