!7 static JTextPane textPane; p-subst { bot("Show Item Page."); } static bool showItemPage(S _word) { fS word = trim(_word); if (empty(word)) false; fS text = word + "\n\n"; swing { JFrame f = getFrame(textPane); showFrame(word, textPane = jcenteredtextpane(text, style_bold(style_fontSize(24))), f); textPane.setEditable(false); thread { addImageToTextPane(textPane, quickVisualize(word)); } } true; } answer { if (showItemPage(s)) ret "OK"; }