Changing the alpha of a GuiMLTextCtrl, even to 1, causes it to disappear indefinitely.
EDIT:
Weird.
This works fine (shows the text) until you uncomment the sleep, at which point the text never shows at all (even though echoing profile.fontColor works fine)
PHP Code:
for (temp.i = 0; i <= 255; i += 10) {
MyText.profile.fontColor = {255, 255, 255, min(255, i)};
// sleep(0.05);
}
EDIT 2:
It appears like the text doesn't update after the first 0.05 seconds. If you set the alpha in the font color to 100 it works, but if you schedule an event in 0.05 seconds you can no longer change it. Changing the text works to update it, though...
EDIT 3:
Also a problem in the current client it seems.
EDIT 4:
Same goes for GuiControl for borderColor, but I can't find a way to update it... alpha only effects the fill color?