Jump to content

GUI Help


mint3d

Recommended Posts

Posted

When I hit close it doesn't close anyhelp?

  
GUIEditor = { 
    button = {} 
} 
  
    function openAdminPanel () 
        adminPanel = guiCreateWindow(157, 99, 481, 343, "Admin Panel - DayZ", false) 
        guiWindowSetMovable(adminPanel, false) 
        guiWindowSetSizable(adminPanel, false) 
  
        adminPanelButton = guiCreateButton(388, 307, 84, 27, "Close", false, adminPanel) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA") 
        adminPanelMemo = guiCreateMemo(9, 24, 183, 48, "Do not abuse your admin powers , thank you.", false, adminPanel) 
        guiSetAlpha(adminPanelMemo, 0.91) 
        guiMemoSetReadOnly(adminPanelMemo, true)     
        showCursor( true) 
    end 
  
  
addCommandHandler("openadmin",openAdminPanel,true,false) 
  
function closeAdminPanel() 
root = getRootElement() 
destroyElement(root) 
end 
addEventHandler("onClientGUIClick",adminPanelButton,closeAdminPanel) 
  

Skype: Jordan_Nymph

Posted
addEventHandler("onClientGUIClick",adminPanelButton,closeAdminPanel) 

Move that inside your function, after you create the button.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
function closeAdminPanel() 
guiSetVisible(adminPanel,false) 
showCursor(false) 
addEventHandler("onClientGUIClick",adminPanelButton,closeAdminPanel) 

This function returns the root node of the element tree, called root. This node contains every other element: all resource root elements, players and remote clients. It is never destroyed and cannot be destroyed using destroyElement.

Read Carefully

https://wiki.multitheftauto.com/wiki/GetRootElement

430x73_B2E03D_FF9900_000000_000000.png

Some people want it to happen, some wish it would happen, others make it happen.

Posted

You're welcome.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...