Page 43 of the JMP Scripting Guide , available from Help > Books, very clearly states:
- JMP cannot record scripts while you are working. Though script-recording is a useful
feature in some other scripting languages, it is less important for software like JMP, where
the results are what matter. You cannot use script-recording to observe how a sequence of
interactive steps is performed.
Two weeks ago, I posted a response and script https://community.jmp.com/t5/Discussions/Select-specific-columns-with-JSL-name-contains-code/m-p/700...
dt = current data table();
z = ncol(dt);
dt << bring window to front;
column(dt,z-1) << set selected;
dt<<goto(column(dt,z-1));