joker17 0 Posted October 7, 2007 I need that auto it press the "ò" key, not that he write the ò key e need to really send it ^^ but i'm noob with auto it and i dunno what to do. This is what i've done HotKeySet("+{F9}", "_Terminate"); Closing macro While 1 If WinActive("2Moons") Then sleep(2000) Send ("ò") Else EndIf WEnd Func _Terminate() Exit EndFunc another equestion is how to make the programm loop? Share this post Link to post Share on other sites
Nahuel 1 Posted October 7, 2007 (edited) I thought that adding the flag 1 to Send() would do the job. But it doesn't work here, probably because I don't have that key. But you can try: Send ("ò", 1) Maybe this, who knows: Send ("{ò}") -edit- Oh, and isn't your script already looping? Edited October 7, 2007 by Nahuel Share this post Link to post Share on other sites