I think that you may need to give the control a profile.
Quote:
//#CLIENTSIDE
function onCreated() {
new GuiBitmapCtrl("MyGUI_Bitmap1") {
profile = GuiDefaultProfile; // <----- LIKE THIS
bitmap = "login_gradient_blue.png";
height = 80;
width = 120;
x = 687;
y = 258;
}
|
I'm just assuming that's how it goes because the client-rc gui compiler always generates controls like that.