sudeepa Posted January 13, 2014 Share Posted January 13, 2014 Hi , Q1 Im filling a complecated form using autoIt. I can focus the typing to a required text box using ControlFocus () can I bring the mouse pointer on to the same focused controller to perform my next action. ( this form is full of custom controllers and {TAb} will not work. Q2 is there a commend to move mouse from current position ( Ex : move 10 pixels down through Y axis from current possition ) Thanks in Advance Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted January 13, 2014 Moderators Share Posted January 13, 2014 sudeepa,Try ControlGetPos to get its coordinates followed by MouseMove to move the mouse to that position. But there might be easier ways - what is this app that you are automating? M23 sudeepa 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...
sudeepa Posted January 13, 2014 Author Share Posted January 13, 2014 sudeepa, Try ControlGetPos to get its coordinates followed by MouseMove to move the mouse to that position. But there might be easier ways - what is this app that you are automating? M23 Hi thanks, it works with me Local $test = ControlGetPos("","","WindowsForms10.EDIT.app.0.262c0e4_r13_ad131") MouseMove($test[0],$test[1]) but in mouse moving this is the first part , exact thing I wanted, what i wanted to do is, after getting the mouse to the previous controller, from that position move mouse 10 pixels up through Y axis and make a click. do you have any clue how to do this Im a tester in a software development company , and we do all manual testing , for testing purposes i have to create several customers per day in Admin module. im trying to automate the general form fillings to make my life easier. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted January 13, 2014 Moderators Share Posted January 13, 2014 sudeepa, move mouse 10 pixels up through Y axismake a clickI would subtract 10 from the y coordinate ($test[1] - 10) and use MouseClick directly. Could I recommend looking through the Help file for useful function before posting in future - it might save you a lot of time. M23 sudeepa 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...
sudeepa Posted January 13, 2014 Author Share Posted January 13, 2014 sudeepa, I would subtract 10 from the y coordinate ($test[1] - 10) and use MouseClick directly. M23 thanks Melba ,, got it 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