im trying to use mouseclick on a program called youwave which is an android emulator that appears to be based on virtual box.
when autoit goes to click a button the button wont depress until i manually drag the cursor out of the application about 75% of the time.
im using windows 7 64bit with uac turned off and mouseclick works everywhere else. is there anything i can do to fix this?
it doesnt have standard windows controls so control click is out afaik.
an example of me trying to push the app button inside youwave
when autoit goes to click a button the button wont depress until i manually drag the cursor out of the application about 75% of the time.
im using windows 7 64bit with uac turned off and mouseclick works everywhere else. is there anything i can do to fix this?
it doesnt have standard windows controls so control click is out afaik.
an example of me trying to push the app button inside youwave
[ autoit ]
#RequireAdmin;shouldnt need this but its there anyway AutoItSetOption("MouseCoordMode", 0) WinActivate("YouWave") Sleep(1000) MouseClick("primary", 244, 624) MouseUp("primary");nope this doesnt help either