LAYOUT_AddChild, Objects[GAD_DETAILS7]=ButtonObject,
GA_ID, GAD_DETAILS7,
GA_ReadOnly, TRUE,
GA_Underscore, "^",
GA_Text, "",
BUTTON_BevelStyle, BVS_NONE,
BUTTON_Transparent, TRUE,
BUTTON_Justification, BCJ_LEFT,
TAG_DONE),
I use the GA_Underscore like this in all of my button gadgets because I don't want a keyboard shortcut. The text changes and it may have an _ in there occasionally.
Even with the ^ I still get the occasional underscore shortcut implemented when there is no _ in the text. A lot of times on a space character. Is there a better, more reliable way to not get any shortcuts?
I would love a global tag so don't have to put the GA_Underscore in every gadget.
OR
Is there a better gadget/class to use to just show some text, no border, instead of a Button?
GA_Underscore, ~0,
orGA_Underscore, 0,
as thomas suggested.