Expand my Community achievements bar.

Is there a way to put special characters in messageBox messages?

Avatar

Level 4
Like carriage returns or quotation marks?
2 Replies

Avatar

Level 4
Due to how the program compiles, it doesn't like quotation marks or carriage returns on their own, so putting in the special characters just means a specific notation so that the compiler knows what you want. I don't know if there are many more, but I can help with those two.



Quotation marks:

\"



Carriage returns

\n



Make sure you get the slash the right way round, backslash, \.



Tom