Right now there is a way to get the current factor settings from a profiler, but there is no native way to get the current response values from the profiler. Instead, we have to scrape them from the display tree of the profiler which could be brittle across JMP releases.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );
obj = dt << Profiler(
Y( :Pred Formula ABRASION, :Pred Formula MODULUS, :Pred Formula ELONG, :Pred Formula HARDNESS ),
Desirability Functions( 1 )
);
obj << Get Factor Settings;