In the following sample please try to move the mouse over the button and you will see that the text will move down (and also the bitmap, if present):
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oBar
DEFINE WINDOW oWnd
DEFINE BUTTONBAR oBar OF oWnd 2007;
SIZE 50, 70
DEFINE BUTTON OF oBar;
ACTION oWnd:End();
PROMPT "Close"
ACTIVATE WINDOW oWnd
RETURN NILEMG
