I have a application that clicks on a flash game with the mouse, Locations of clicks are working fine its the actual clicking that is the issue, although this might be the flash that is to blame..
I have this code
procedure move(x,y:byte);
begin
SetCursorPos(getx(x)+21,gety(y)+21);
sleep(15);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0,...
Hi. I have this function, that adds 31px to my style bottom on ul.
It works fine, but if I click fast, it no longer adds 31px, but some weird number like 17.423px. I guess it's because the animation isn't done, and thereby by clicking fast it adds 31px to the current px amount. My thought is that I need to insert a stop(). But where?
Th...
First a little explanation of the need, so I don't get hammered for wanting to add "useless and distracting" sounds to a web-page.
I've had to add two virtual keyboard keys to my web page for the iPad, because these characters are needed for my linguistics oriented app but don't appear either on the standard iPad keyboard or on the cont...