View Single Post
  #7  
Old 01-31-2009, 02:23 PM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
You are using...

PHP Code:
new GuiButtonCtrl("MyGUI_Button1") {
  
text "Warp";
  
width 80;
  
215;
  
143;
  
normalbitmap "guiera_tab.png";
  
mouseoverbitmap "guiera_tab.png";
  
pressedbitmap "guiera_tab.png";

... and normal/mouseover/pressedbitmap are only for GuiBitmapButtonCtrl's. Instead, do this:

PHP Code:
new GuiButtonCtrl("MyGUI_Button1") {
  
useOwnProfile true;
  
profile.bitmap "guiera_tab.png";
  
text "Warp";
  
width 80;
  
215;
  
143;

__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote