Jump to content

Koray

Active Member
  • Posts

    383
  • Joined

  • Last visited

  • Days Won

    58
  • Feedback

    0%

Community Answers

  1. Koray's post in ToolTipText Color was marked as the answer   
    Try it;

    |cFFFF0000|hYOURTEXTINHEREFF0000 part = Color hex code (this example for red)
  2. Koray's post in How to load a dll file from client source? was marked as the answer   
    in UserInterface.cpp
    find this 
    int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) add it under
    LoadLibraryA("dllname.dll);
  3. Koray's post in How to add buttons was marked as the answer   
    First, you create any image for background
     
    Create your board base with background 
     
    self.backg = ui.ImageBox() self.backg.LoadImage("BoardBackGround.tga") #your background image name self.backg.SetPosition(x, y)#change by yourself self.backg.Show()   Add button in your imagebox(image board) self.backg_button = ui.Button() self.backg_button.SetParent(self.backg) #your image board parent self.backg_button.SetPosition(x,y) #Change by yourself self.backg_button.SetUpVisual('d:/ymir work/ui/public/close_button_01.sub')   #""" self.backg_button.SetOverVisual('d:/ymir work/ui/public/close_button_02.sub') #Change by yourself self.backg_button.SetDownVisual('d:/ymir work/ui/public/close_button_03.sub') #""" self.backg_button.SetEvent(ui.__mem_func__(self.__ButtonFuncInHere)) self.backg_button.Show()   Create your button function def __ButtonFuncInHere(self):      #Func in here
  4. Koray's post in Client 40k Matrix System was marked as the answer   
    change account.account > securitycode column with null
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.