http://bugs.winehq.org/show_bug.cgi?id=23067 Summary: Can't move and click mouse with program Product: Wine Version: 1.1.42 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: xiecheng(a)box.az CC: xiecheng(a)box.az Created an attachment (id=28633) --> (http://bugs.winehq.org/attachment.cgi?id=28633) This program work is wait , move mouse and click mouse left button Hi I find bug in Wine. I downloaded many programs and tested all Window XP programs not working move mouse and click mouse button. I wroted simple program. But my application too does not working. I wroted this program on Window XP but all well worked. I think so this is Wine Bug. I adding the link I downloaded and tested program`s: http://www.brothersoft.com/automouseclicker-download-25176.html http://www.topshareware.com/Standard-Mouse-Auto-Clicker-download-76910.htm vs ... I added my wroted application. THis is my application source codes: #include <windows.h> #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int i , x, y; for(i=0;i<50;i++){ Sleep(5000);//wait 5 second mouse_event(MOUSEEVENTF_LEFTDOWN , x, y, 50, 80); //MOve cursor and left down printf("Left down - "); Sleep(1000);//wait 1 second mouse_event(MOUSEEVENTF_LEFTUP, x, y, 32, 30); printf("Left up | \n"); } system("PAUSE"); return EXIT_SUCCESS; } -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.