groupname.setTooltip("The name of the group...");
groupname.setColor(textSecondaryColor);
groupname.setFieldColor(fieldcolor);
popup.gridAttachWidget("GroupName",plug, groupname,1,3);
GenericButton truebutton = new GenericButton("SetTrue");
truebutton.setTooltip("Set the flag to true.");
truebutton.setColor(textSecondaryColor);
truebutton.setHoverColor(hoverColor);
popup.gridAttachWidget("TrueButton",plug, truebutton,2,1);
GenericButton falsebutton = new GenericButton("SetFalse");
falsebutton.setTooltip("Set the flag to false.");
falsebutton.setColor(textSecondaryColor);
falsebutton.setHoverColor(hoverColor);
popup.gridAttachWidget("FalseButton",plug, falsebutton,2,2);
GenericButton removebutton = new GenericButton("Remove");
removebutton.setTooltip("Remove the flag.");
removebutton.setColor(textSecondaryColor);
removebutton.setHoverColor(hoverColor);
popup.gridAttachWidget("RemoveButton",plug, removebutton,2,3);
GenericButton removeallbutton = new GenericButton("RemoveAll");
removeallbutton.setTooltip("Remove all flags from the player or group...");
removeallbutton.setColor(textSecondaryColor);
removeallbutton.setHoverColor(hoverColor);
popup.gridAttachWidget("RemoveAllButton",plug, removeallbutton,3,3);
screens.put(p, popup);
p.getMainScreen().attachPopupScreen(popup);
} else {