seletchi gabriel 0 Posted December 5, 2006 (edited) 1. srry for my english 2. i used search ! 3. srry for disturbing ok ... i need a script to disable enter smth like that !script for disable enter button! MsgBox("0","x x x x","Hello , How are u?") !script must wait 3 seconds then click ok! msgbox("0","x x x x","im fine...and u?") !script must wait 3 seconds then click ok!+!disable Enter! .............................................................................. smth like that?can you help me? thx ! Edited December 5, 2006 by seletchi gabriel Have fun and be nice !Can't wait for autoit v8.0! Share this post Link to post Share on other sites
Xenobiologist 47 Posted December 5, 2006 Hi, dunno what this is for,but MsgBox(262144, "x x x x", "Hello , How are u?") Sleep(3000) MsgBox(262144, "x x x x", "im fine...and u?") Sleep(3000) HotKeySet("{Enter}", "end") While 1 Sleep(100) WEnd Func end() EndFunc ;==>end So long, Mega Scripts & functions Organize Includes Let Scite organize the include files Yahtzee The game "Yahtzee" (Kniffel, DiceLion) LoginWrapper Secure scripts by adding a query (authentication) _RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...) Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc. MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times Share this post Link to post Share on other sites
IAmTheManYo 0 Posted December 5, 2006 HotKeySet("{ENTER}", "_DisableEnter") HotKeySet("{NUMPADENTER}", "_DisableEnter") Func _DisableEnter() Sleep(20) EndFunc Meger beat me to it. You also want to add the numpad enter as well though. I hope this helps. Share this post Link to post Share on other sites
seletchi gabriel 0 Posted December 5, 2006 thx ! Have fun and be nice !Can't wait for autoit v8.0! Share this post Link to post Share on other sites