Without accepting before deselected you say?
That's just a simple 1 line of code script.
When you press 9 - all it does is that it will click on the accept trade button...
If you want one that doesn't rely on coordinates (in your case, this would probably be better since you need calibrating)
you would need to take a screenshot of the trade button, crop it so that only the most minimum text is showing then place it
in the same directory as the following script with the name "trade.png":
Code:
9::
ImageSearch, imgx, imgy, 0, 0, A_ScreenWidth, A_ScreenHeight, trade.png
if (ErrorLevel = 0) {
Click %imgx%, %imgy%
}
return
If you press 9 with either of the scripts running, they will click on the accept trade button.
I don't see how these scripts would be useful though, you could just as easily manually press the trade button yourself >.<