Okay here are my tries:
v:= MakeLParam(127,116);
SendMessage(pokerhwnd, WM_RBUTTONDOWN, MK_RBUTTON, v);
SendMessage(pokerhwnd, WM_RBUTTONUP,MK_RBUTTON, v);
POSTMessage(pokerhwnd, WM_RBUTTONDOWN, MK_RBUTTON, v);
POSTMessage(pokerhwnd, WM_RBUTTONUP,MK_RBUTTON, v);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
All the above functions work in windows like Firefox, but only mouse_event works in the window I'm targeting... But... I dont want it to really move the mouse, just send the clicks.