brayn Posted April 22, 2009 Posted April 22, 2009 I am fairly new to Autoit, but I have found it very useful. I would like to know how to get Autoit to click on a tooltip that appears in the taskbar. Thanks!
Moderators Melba23 Posted April 22, 2009 Moderators Posted April 22, 2009 brayn,First, welcome to the AutoIt forums.When you post here it always helps if you have had a go at solving your problems beforehand. Having some code to work on is a great help - and no-one here is too keen to help the "code it for me" brigade.Reading the Help file (at least the first few sections - Using AutoIt, Tutorials and the first couple of References) will help you enormously. You should also look at the excellent tutorials that you will find here and here. Using the Search facility is also a good tip as there is a pretty good chance your question, or something like it, has been asked before. Look for the "Search" button to the right in the title bar. This code shows you how to get AutoIt to click on one of its own TrayTips, which are windows of the tooltips_class32 type:; Create TrayTip TrayTip("Fred", "Test", 30) ; Wait for it to appear Sleep(2000) While 1 ; Look for a window of that class to appear If WinExists("[CLASS:tooltips_class32]", "") Then ; Get the position and size of the TrayTip $aPos = WinGetPos("[CLASS:tooltips_class32]", "") ; Exit the While...WEnd loop ExitLoop EndIf WEnd ; Move the mouse to the centre of the TrayTip and click it MouseClick("left", $aPos[0] + ($aPos[2] / 2), $aPos[1] + ($aPos[3] / 2), 1, 50) ExitYou may need to check the TrayTip you are interested in by using the Au3Info tool, which is in the same folder as AutoIt. It will give you the information on the specific TrayTip you are trying to click to enable you to adjust the above code.Ask again if you have problems.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
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