View Single Post
  #3  
Old 09-18-2016, 08:15 AM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
Quote:
Originally Posted by itsCyber View Post
PHP Code:
//#CLIENTSIDE
function onCreated() {
  new 
GuiBitmapCtrl("ChatButton") {
    
profile GuiDefaultProfile;
    
bitmap "gui-button.png";
    
height 57;
    
width 63;
    
27;
    
171;
  }
  function 
ChatButton.onMouseDown() {

}

(added PHP tags to have it easier to read)

In addition to Ziro his suggestions, you should watch out where you set your brackets and where your functions are set. You can't call a function within a function (in this case), so it should look like:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  new 
GuiBitmapCtrl("ChatButton") {
    
profile GuiDefaultProfile;
    
bitmap "gui-button.png";
    
height 57;
    
width 63;
    
27;
    
171;
  }
}
function 
ChatButton.onMouseDown() {
  
//your actions

__________________
MEEP!
Reply With Quote