!7 static L sentences; concept Sentence { S text; S action; } p-substance { unswing { db(); new ConceptFieldIndex(db, Sentence, "text"); } sentences = toLinesFullTrim(loadSnippet(#1008606)); sentences = notStartingWith("\"", sentences); time { makeUniqueConcepts(Sentence, "text", sentences); } JPanel panel = gridLayoutPanel_trackWidth_evenlySpacedCols(2); panel.add(jlabel("Sentence")); panel.add(jlabel("Action")); for (S s : takeFirst(10, sentences)) { panel.add(jtextfield(s)); panel.add(centerAndEast(jtextfield("screw it"), jbutton("OK")); } showFrame(jscroll(panel)); //showFrame(jscroll_centered(panel)); }