I got the background gui to work
now I'm trying to get the button gui to work
can someone give me hand here i got a pic so u know what im talking about
Quote:
new GuiWindowCtrl("MyGUI_Window1") {
useownprofile = true;
profile.bitmap = "guiera_window.png";
clientrelative = true;
clientextent = "320,240";
canclose = false;
canmaximize = false;
canminimize = false;
canmove = true;
canresize = true;
closequery = false;
destroyonhide = false;
text = "Event Bot";
x = 538;
y = 155;
new GuiButtonCtrl("MyGUI_Button1") {
text = "Warp";
width = 80;
x = 215;
y = 143;
normalbitmap = "guiera_tab.png";
mouseoverbitmap = "guiera_tab.png";
pressedbitmap = "guiera_tab.png";
}
|