ID:158772
 
I'm trying to set a button's text to "Users & Guilds", but it keeps showing up as "Users_Guilds". Is there a way to get the ampersand to show up?
Use a double ampersand (&&). This is a standard feature of Windows GUI controls where putting an ampersand before a letter makes it a hotkey, e.g. "&Open" (though I don't know if BYOND's interface actually handles the hotkey part). Use && to avoid that behaviour.
In response to Hobnob (#1)
Works great, thanks!