View Single Post
  #1  
Old 01-31-2009, 05:05 AM
Rave_J Rave_J is offline
Graal Developer
Join Date: Feb 2006
Location: Texas
Posts: 848
Rave_J can only hope to improve
Send a message via AIM to Rave_J Send a message via MSN to Rave_J Send a message via Yahoo to Rave_J
Question Gui Buttom Problem

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";
}
Reply With Quote