View Single Post
02-14-13, 05:05 PM   #2
Be3f.
A Theradrim Guardian
 
Be3f.'s Avatar
Join Date: Jan 2011
Posts: 65
Originally Posted by Crall View Post
My final goal is to getting a nice boarder around the bars, and maybe if possible as seen on other UI's making the skada window show if I click on a specific button shown on the UI, with help from KGPANELS.
Border:

Basicly make a panel you like, then parent and anchor to "SkadaBarWindowSkada" and change the width / height. You will have to make a panel for each of the bars.

Toggle Button:

Make a new panel then go to scripts -> OnClick and paste the following:
Code:
if pressed then
  if SkadaBarWindowSkada:IsShown() then
    SkadaBarWindowSkada:Hide()
  else
    SkadaBarWindowSkada:Show()
  end
end
__________________
-- Be3f.
  Reply With Quote