Help GLOBALMESSAGE

Join Discord

P1anetEarth

Loyal Member
Loyal Member
Apr 10, 2018
123
31
45
Is there a way where I can change the positioning of the "GLOBALMESSAGE" "Announcement" reason being the text is slightly none centered to the UI Box

1620423866861.png

I just want to move the Writing upwards a bit to align with the box.
 

LightBringer

Primordial GM
Veteran
Primordial
Game Master
Feb 13, 2014
3,831
1
1,742
260
Code:
            // 
            // GlobalMessageTextBox
            // 
            this.GlobalMessageTextBox.Location = new System.Drawing.Point(6, 17);
            this.GlobalMessageTextBox.Name = "GlobalMessageTextBox";
            this.GlobalMessageTextBox.Size = new System.Drawing.Size(380, 20);
            this.GlobalMessageTextBox.TabIndex = 0;
 
Upvote 0

P1anetEarth

Loyal Member
Loyal Member
Apr 10, 2018
123
31
45
Code:
            //
            // GlobalMessageTextBox
            //
            this.GlobalMessageTextBox.Location = new System.Drawing.Point(6, 17);
            this.GlobalMessageTextBox.Name = "GlobalMessageTextBox";
            this.GlobalMessageTextBox.Size = new System.Drawing.Size(380, 20);
            this.GlobalMessageTextBox.TabIndex = 0;
Brilliant thank you I'll go try that now!
 
Upvote 0