!7 p-substance { final JComboBox cbBot = jBotSelector(); final JTextField tfCmd = jtextfield(); final JTextField tfOutput = jdisabledtextfield(); setFrameWidth(800, showFormTitled("Send Command To Bot", "Bot:", cbBot, "Command:", tfCmd, "Result:", tfOutput, r-thread { loading { S cmd = getText(tfCmd); setText(tfOutput, "Sending " + singleQuote(cmd) + "..."); S address = botSelector_getAddress(cbBot); print("Sending to: " + address); setText(tfOutput, send(address, cmd)); } })); }