Jump to content

Can I bring mouse pointer to a focused control


sudeepa
 Share

Recommended Posts

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

  • Moderators

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? :huh:

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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? :huh:

M23

 

Hi thanks, it works with me  :shifty:

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

  • Moderators

sudeepa,

 

move mouse 10 pixels up through Y axis

make a click

I 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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...