I hope this isn't taken as a form of blasphemy, but it would be very nice if users could write JMP scripts in python in addition to JSL.
There would be an implied "import jmp"-type statement, and then users could do things like this:
dt = jmp.getCurrentTable()
dt2 = jmp.newTable()
aRow = dt.row(5)
aCol = dt.col(3)
aCell = str( dt.cell(5,3) )
dt2.cell(1,1) = aCell
newCol = dt2.newCol()
newCol.formula=':Column(1)*pi()/180'
dt.graphBuilder( size=(800,600), x=dt.colByName('time'), y=dt.col(3), overlay=dt.col(7), colSwitcher(dt.col(3)))