SOLVED:
I reported the issue to the bug tracker team, and as a result the method 'Application.ActivateHint' (Delphi compatible) has been added and is available from SVN 27014. It works perfect now.
For everyone interested, the following code works from SVN 27014:
procedure TForm1.PaintBox1MouseMove(Sender: TObject; Shift: TShiftState; X,Y: Integer);
begin
PaintBox1.Hint := IntToStr(X) + '-' + IntToStr(Y);
Application.ActivateHint(Mouse.CursorPos);
end;
You might want to add 'Application.HintPause := 10' in the FormCreate procedure which brings the delay down to 10ms after entering the PaintBox (or whatever object and timing you prefer). The color can be changed this way: 'Application.HintColor := clAqua'. Working perfect...
