Hello,
I've been using my derma buttons in my server for a while now and i've never had any issues with the ulx, untill I updated to the latest ulx. I use two simple derma buttons on my server that looks like this:
local DermaButton = vgui.Create( "DButton" ) // Create the button
DermaButton:SetParent( DermaPanel )
DermaButton:SetText( "Mute" )
DermaButton:SetPos( 25, 50 )
DermaButton:SetSize( 70, 30 )
DermaButton.DoClick = function()
RunConsoleCommand( "mute_menu" )
end
local DermaButton = vgui.Create( "DButton" ) // Create the button
DermaButton:SetParent( DermaPanel )
DermaButton:SetText( "Third Person" )
DermaButton:SetPos( 25, 75 )
DermaButton:SetSize( 70, 30 )
DermaButton.DoClick = function()
RunConsoleCommand( "say","!3p" )
end
Now the buttons still shows but when I try and click on them, nothing happens. I have the derma buttons in a cilentside file in the game mode. I was wondering if anyone could point me in the right direction where I still can use the new ulx with my derma buttons?
Thanks,