This is my code for making a label. I used a Button expression to build it. Is there a better way to make a label? My objection to doing it this way is that, when I set Enabled -> True, the button becomes clickable. For my application, I don't want anything clickable.
Button[StringJoin["Label", ToString[3]], Null,
Background -> Black, BaseStyle -> {White, 16, Bold}, Enabled -> False]


"Label" <> ToString[3]instead of the complicatedStringJoin["Label", Map[ToString, {3}]]? as for your question itself, I do not understand what you want. What do you mean byit becomes clickable, It should not be clickable? it is a Button? It is supposed to be clickable? – Nasser Dec 21 '12 at 12:04