With Wine I get this:
1: the colour of the text should be black
2: the background of the arrow should be transparent
and on Windows 7:
3: the arrow should be dark
How/where can I define the text colour of the highlighted item? And also the arrow image?
The code:
Code: Select all
FUNCTION MAIN()
LOCAL oWnd
DEFINE WINDOW oWnd FROM 1, 1 TO 22, 75 ;
TITLE "Test Menu" MENU BuildMenu()
ACTIVATE WINDOW oWnd
return(0)
function BuildMenu()
local oMenu
MENU oMenu 2007
MENUITEM "Item 1"
MENU
MENUITEM "Item 1.1"
MENUITEM "Item 1.2"
MENU
MENUITEM "Item 1.2a"
MENUITEM "Item 1.2b"
ENDMENU
ENDMENU
ENDMENU
return oMenu