lawonama 0 Posted August 7, 2011 Hi all i have this function: Func one() Send("t" & GUICtrlRead($text1) & "{enter}") EndFunc But i want, if he pressed T it wont send, if he presses ENTER or ESC it will work again. Is that possible? Share this post Link to post Share on other sites
Melba23 3,496 Posted August 7, 2011 lawonama,This should give you the idea - the button works until you press "t", then pressing "ENTER" or "ESCAPE" makes it work again. expandcollapse popup#include <GUIConstantsEx.au3> ; Declare flag $fDisable = False ; Set HotKeys HotKeySet("{ENTER}", "_ReEnable") HotKeySet("{ESC}", "_ReEnable") HotKeySet("t", "_Disable") ; Create GUI $hGUI = GUICreate("Test", 500, 500) $hText = GUICtrlCreateInput("", 10, 10, 200, 20) $hButton = GUICtrlCreateButton("Do It!", 10, 100, 80, 30) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $hButton one() EndSwitch WEnd Func one() ; Check flag If $fDisable Then Return ; Action ConsoleWrite("Func one called at " & @SEC & @CRLF) EndFunc Func _Disable() ; Set flag $fDisable = True EndFunc Func _ReEnable() ; Clear flag $fDisable = False EndFuncIs that what you wanted? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
lawonama 0 Posted August 23, 2011 Try to type: "T" in the inputbox.. It wont work? Share this post Link to post Share on other sites
Melba23 3,496 Posted August 23, 2011 lawonama,You are continually posting little snippets of code which "do not work". We keep trying to help you, but as you never really explain very well why the code does not work it is getting very tedious. Why not post your whole script so we can see what you are trying to do - perhaps then all will become clear and you will get some serious help. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites