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