golfinhu 1 Posted August 23, 2011 (edited) hi ppl for example: ControlClick('[CLASS:OSKMainClass]', '', 'DirectUIHWND1', 'left', 1, 570, 180) i want to click here, and hold the button for 3 seconds! after 3 seconds, i release the button! only a basic delay! i tried this: Opt("MouseClickDownDelay", 3000) but dont work =[ thanks Edited August 23, 2011 by golfinhu Share this post Link to post Share on other sites
rcmaehl 50 Posted August 23, 2011 That's because you're not actually clicking the mouse but instead sending a simulated mouse click to the control. My UDFs are generally for me. If they aren't updated for a while, it means I'm not using them myself. As soon as I start using them again, they'll get updated.My ProjectsCisco Finesse, Github, IRC UDF, WindowEx UDF Share this post Link to post Share on other sites
ArkiePazi 0 Posted August 24, 2011 Some programs overrides the send functions. Sadly I have not been able to find a workaround. You could also try: MouseDown("left") sleep(3000) MouseUp("left") Share this post Link to post Share on other sites