This is what I did in Runescape to avoid looking for the font and just clicking in random coordinates down from the point you right clicked:
SCAR Code:
function ChooseOptionQuick(xx,yy, option: Integer): Boolean;
var
mx,my: Integer;
i: Integer;
t: Integer;
begin
my := yy + 25 + random(7); //28 = perfect
mx := xx + random(37);
if(not(option = 1))then
for i := 2 to option do
my := my + 15;
MMouse(mx,my,0,0);
MarkTime(t);
repeat
wait(50+random(40));
if(FindColor(mx,my,6121839,mx-25,my,mx+25,my+2))then
begin
Result := true;
GetMousePos(mx,my);
Mouse(mx,my,0,0,true);
wait(40+random(60));
Exit;
end;
until(TimeFromMark(t) > 1500+random(900));
Result := false;
end;
Usage:
SCAR Code:
Mouse(x,y,5,5,false);
GetMousePos(x,y);
ChooseOptionQuick(x,y,2);
That will choose the second option from the top (Use-quickly for the bank in Runescape). I am not sure if the chooseoption boxes are larger/smaller though because the fonts are different.
Let me know if this works!
~JAD