dickjones007 Posted December 10, 2013 Share Posted December 10, 2013 i have 5 buttons in my script every button is defined with GUICtrlSetOnEvent 3 of them click every time no matter how fast i click on them with a mouse but 2 of them skip like 6 out of 10 clicks these 2 buttons call _NowTime() function to GUICtrlCreateInput with GUICtrlSetData any standard reason for those buttons not click ever time? Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted December 10, 2013 Moderators Share Posted December 10, 2013 dickjones007,Check that the buttons are not being partly overlapped by other controls (probably labels). If they are, then they will not fire when clicked in the overlapping area as AutoIt does not know which of the controls to action and so does nothing. M23 dickjones007 1 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 Link to comment Share on other sites More sharing options...
dickjones007 Posted December 10, 2013 Author Share Posted December 10, 2013 wow im amazed at the simplicity of the solution and the vastness of my stupidity that was exactly it thank you Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted December 10, 2013 Moderators Share Posted December 10, 2013 dickjones007,Nice to see the crystal ball is working well today! TopTip: when creating a GUI always colour the labels to make sure that there is no overlap - then remove the colouring before going final. 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 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