Ok. Now I've gotten very far with this GUI script with help from Warcaptain, Master Storm and Kaidenn. But everytime I set the GUIButtonProfile. My menu gets messed up.
PHP Code:
//#CLIENTSIDE
function onCreated(){
addGUIControls();
}
function addGUIControls(){
new GuiWindowCtrl("SH_Information"){
profile = "GuiWindowProfile";
extent = "450 300";
position = "100 100";
canmaximize = 1;
canminizmize = 0;
canclose = 1;
new GUIButtonCtrl("News"){
profile = "GuiButtonProfile";
extent = "400 300";
position = "45 45";
}
}
new GUITabCtrl(Hirings_Tab){
}
new GUIScrollCtrl(){
profile = "GuiScrollProfile";
}
GraalControl.addControl(Blah);
}