Trouble extracting text from a Text Edit Box JMP 16.1
I am having trouble extracting text from the Text Edit Box in JMP 16.1. When running the script below, the text that is entered by the user does not show up in the field "title".
maintitle = New Window("Project Name",
<<Modal,
Text Box("Enter Project Name for Reports. "),
PNAME = Text Edit Box("Project Name", set width(80)),
title = (PNAME << get text() ; ),
Button Box("OK"),
Button Box
...