in reply to How can I get Prima to display things from top to bottom?

Prima::Edit
insert_text TEXT, [ HIGHLIGHT = 0 ] Inserts TEXT at the cursor position. If HIGHLIGHT is set to 1, the selection block is cancelled and the newly inserted text is selected.
So the solution is to move the cursor
$display_field->cursor_cend; $display_field->insert_text("$_\n\n");
Honestly, there are no things

Replies are listed 'Best First'.
Re^2: How can I get Prima to display things from top to bottom?
by ZJ.Mike.2009 (Scribe) on Jun 03, 2011 at 07:30 UTC
    Great! Things work now. Thanks Anonymous Monk!