Quote from: Cristal2000 on August 22, 2013, 08:13:48 PMBut I had to do another form to MOVE the window of the casino in an exact position to have ALWAYSso I always have the usual right coordinates for the bets
Cristal, if you need to use absolute coordinates, remember you can easily calculate the right coordinates for the target window wherever it is.
If you aimed to have window's position always at:
0,0
But it is currently at:
50,75
And your target X,Y coordinate pair is at:
26,37
You simply need to use:
current left + X, current top + Y
In this case:
50 + 26, 75 + 37
=
76, 112
as your new absolute coordinates pair.