seletchi gabriel Posted December 5, 2006 Share 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! Link to comment Share on other sites More sharing options...
Xenobiologist Posted December 5, 2006 Share 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 Link to comment Share on other sites More sharing options...
IAmTheManYo Posted December 5, 2006 Share 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. Link to comment Share on other sites More sharing options...
seletchi gabriel Posted December 5, 2006 Author Share Posted December 5, 2006 thx ! Have fun and be nice !Can't wait for autoit v8.0! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now