Processing Forum
import interfascia.*; GUIController c; IFRadioController rc; IFRadioButton b1, b2, b3; void setup() { c = new GUIController(this); rc = new IFRadioController("Selector"); b1 = new IFRadioButton("One", 30, 20, rc); b2 = new IFRadioButton("Two", 30, 40, rc); b3 = new IFRadioButton("Three", 30, 60, rc); c.add(rc); }The example shows buttons but it doesn't show how to detect input and perform an action. If you have time I'd appreciate some guidance.