• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

removing close minimize

Dricky

New Member
Joined
Sep 14, 2013
Messages
11
Reaction score
0
hello,

i'm trying to remove the close 'x' and '-' minimize buttons from some of the windows, for example - the skills window. Does anyone know what the process is?

thank you
 
After:
Code:
  skillsWindow:setup()
Add:
Code:
  skillsWindow:getChildById('closeButton'):hide()
  skillsWindow:getChildById('minimizeButton'):hide()
  skillsWindow:getChildById('miniwindowTopBar').onDoubleClick = nil
 
Back
Top