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.
Also,
PHP Code:
new GuiTextCtrl("Test_Text") {
profile = GuiBlueTextProfile;
useOwnProfile = true;
profile.fontStyle = "i";
text = "Some text that should be italicized";
// rest removed for brevity
}
This no longer italicizes text as it did in V5. I haven't tested with other controls.