Posts: 415
Threads: 145
Joined: Oct 2013
Reputation:
0
Hello guys, can someone give me an example, how can I create some information box, where the header will have some color for example ъdolie, bellow header will be white text with some red parts.. Thx...
Posts: 3,324
Threads: 96
Joined: Sep 2013
This link will help you with dialogs in general...
DIALOG_STYLE_MSGBOX is the style you will want... Use
Color Embedding to color parts of your text...
Example of coloring a string...
Quote:
White = "Hello World!"
Red = "{FF0000}Hello World!"
Blue = "{0000FF}Hello World!"
|
To color different parts... (This will show "
Hello World!")
Quote:
Red/Blue = "{FF0000}Hello {0000FF}World!"
|
Posts: 415
Threads: 145
Joined: Oct 2013
Reputation:
0
Yeah dude, but I want to put this "textbox" for example to down left corner and is this possible in dialog?
Posts: 3,324
Threads: 96
Joined: Sep 2013
No, not in a dialog... If you want to do this, you will need to create a bunch of "TextDraws" or a "Menu"...
You should just create a dialog for what you need to do... (I dont like menu's and textdraw take up alot of lines... :P)
If you do refuse to use TextDraws, goto this
CreateMenu page...