The GO button on the keyboard

Hi,

 
I have an edit field with a button next to it.  When you go into the edit field the keyboard pops up on the bottom.  There is a GO button on the keyboard.  Is there any way to get the GO event so that I can have it press the button?
 
Thanks,
Joseph Gordon
 

AFAIK there is no event related to pressing the GO button.

The GO button acts as pressing enter on the currently active edit field.

Please note we are not able to provide support for general browser questions.

I was finally able solve this by hooking to the AsyncKeyDown and looking for a 13 (return)

procedure TForm1.IWEdit2AsyncKeyDown(Sender: TObject;
  EventParams: TStringList);
begin
  if EventParams.Values['which']='13'
    then TIWIPhoneButton1AsyncButtonClick(nil,nil);
end;