http://cloford.com/resources/colours/500col.htm (http://cloford.com/resources/colours/500col.htm)
Bookmark that link.
The "Access" Numbers are how you use these with EUO.
In order to change the Color of a button on a menu, you change the Font background Color Before you Create the Button
Menu Font BGColor 2037680 ; < This would be Indian Red
if #MENUBUTTON <> N/A
{
set %function #MENUBUTTON
set #MENUBUTTON N/A
gosub %function
}
set #menubutton n/a
loop:
if #menubutton <> n/a
{
gosub #menubutton
set #menubutton n/a
}
goto loop
; define menu
menu Button BUTTONNAME_HealMyself 292 388 75 41 heal me
menu Button BUTTONNAME_EV 292 388 75 41 cast an ev
menu Button BUTTONNAME_HaltScript 292 388 75 41 Halt script
set #menuButton N/A
; Read Menu
set %EndScript #false
Repeat
If #MenuButton <> N/A
{
gosub #menuButton
set #menuButton N/A
}
until %EndScript = #true
halt ; End script when Button "Halt Script" Pressed
; button Subs
sub ButtonNAme_HaltScript
set %EndScript #true
return
sub ButtonName_EV
; Do the stuff to cast an ev
return
sub ButtonName_HealMyself
; Do the stuff to Healmyself
return