In the following sample, open the menu and wait for the timer to change the prompt. You will see that the menuitem temporary losts its 2007 style:
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oMenu, oTimer
MENU oMenu 2007
MENUITEM "Test"
MENU
MENUITEM "Test" CHECKED
ENDMENU
ENDMENU
DEFINE WINDOW oWnd;
MENU oMenu
DEFINE TIMER oTimer OF oWnd;
INTERVAL 3000;
ACTION ( TONE( 440, 1 ), oMenu:aItems[ 1 ]:bAction:aItems[ 1 ]:SetPrompt( "Changed" ) )
ACTIVATE TIMER oTimer
ACTIVATE WINDOW oWnd
RELEASE TIMER oTimer
RETURN NILEMG