I'm assuming I did this right..
When you use 'useownprofile = true' in a GuiTextEditCtrl, the image disappears. It can't be set back to it's original image with the 'bitmap' variable.
HTML Code:
new GuiWindowCtrl(GSAdd) {
width = 160;
height = 160;
x = (screenwidth - width) / 2;
y = (screenheight - height) / 2;
canMinimize = canMaximize = canResize = false;
new GuiTextEditCtrl(GSAddAccount) {
x = 8;
y = 24 + 16;
width = GSAdd.width - (8+8);
height = 22;
useownprofile = true;
profile.bitmap = "defaulttextedit.png";
profile.align = "center";
}
}
And a screenshot of the problem.