Quote:
Originally Posted by salesman
border, fillColor, etc don't seem to work with GuiMLTextCtrl in v6
PHP Code:
new GuiMLTextCtrl("Test_Control") {
profile = GuiBlueMLTextProfile;
useOwnProfile = true;
profile.border = 1;
profile.opaque = true;
profile.fillColor = {192, 224, 255, 200};
profile.fontColor = {0, 0, 0};
text = "Test";
// Rest removed for brevity
}
The above works fine in V5 and displays the MLTextCtrl with the colored background and border, but in V6, it lacks the border and fill color.
|
Still having trouble with GUIs not behaving as they do in v5...
Here's what a GUI looks like in V5:

Here's what it looks like in V6:
Am I doing something wrong?