It's not catching any mouseovertext. Maybe if you put a small wait in between the mouse move and text check it will get it?
File SIMBADIR/includes/bonsai/libobjfind.simba, function TObjFind.choose (around line 1243).
Simba Code:
mouse(objPoints[i].rand(pointVariance), MOUSE_MOVE);
{$IFDEF DEBUG_ON} writeln('TObjFind.choose: mouse moved to object ', i); {$ENDIF}
moText := getMouseOverText();
Try changing to:
Simba Code:
mouse(objPoints[i].rand(pointVariance), MOUSE_MOVE);
{$IFDEF DEBUG_ON} writeln('TObjFind.choose: mouse moved to object ', i); {$ENDIF}
wait(250);
moText := getMouseOverText();
You can play with the 250 to see what works well.
If it helps let me know and I can put out for general release.