ForsakenGod 0 Posted June 1, 2010 Hello , Lets say we have a window and when we use control click on it it does not work because we actually need another control to interact with . My question is how can i get this control if its used only when you right click on the window ? Share this post Link to post Share on other sites
somdcomputerguy 103 Posted June 1, 2010 Maybe right click (or controlclick) the window, then send (or controlsend) down arrow(s)? - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
ForsakenGod 0 Posted June 1, 2010 gonna try it out but i quess it wont help thanks for a suggestion tought Share this post Link to post Share on other sites
somdcomputerguy 103 Posted June 1, 2010 I'm not sure exactly what you're trying to do, but maybe I've been helpful. Good luck in your endeavor. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
bo8ster 3 Posted June 2, 2010 (edited) Try something like this ControlClick("add", "control Info",, "right", 1, xpos, ypos) ; this will rightclick in the desired location. Send("{DOWN}") ; how many times requried Send"("{ENTER}") Edit: Or you can use MouseClick ( "right" ,xpos, ypos) Edited June 2, 2010 by bo8ster Post your code because code says more then your words can. SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y. Use Opt("MustDeclareVars", 1)[topic="84960"]Brett F's Learning To Script with AutoIt V3[/topic][topic="21048"]Valuater's AutoIt 1-2-3, Class... is now in Session[/topic]Contribution: [topic="87994"]Get SVN Rev Number[/topic], [topic="93527"]Control Handle under mouse[/topic], [topic="91966"]A Presentation using AutoIt[/topic], [topic="112756"]Log ConsoleWrite output in Scite[/topic] Share this post Link to post Share on other sites