How can i make a button in a gump perform a command such as open chat normally command: [c
Code:
AddButton(127, 245, 2117, 2117, (int)Buttons.Button6, GumpButtonType.Reply, 0);//chat 6

AddLabel(150, 243, 47, @"Chat");

and this section below:
Code:
case (int)Buttons.WebsiteButton1:sender.LaunchBrowser("http://");

break;
what is the buttontype? GumpButtonType.Command, 0); .....perhaps

and how do i call it

case (int)Buttons.WebsiteButton1:sender.LaunchBrowser("http://");
 
Back