Here is the example script from the Help==>JMP Scripting==>Scatterplot 3D==>Frame3D==>Set Spin that demonstrates how to spin the graph using JSL. As far as making a video, There is shareware that will record to video the activity in a displayed window. You may want to try CamStudio - Free Screen Recording Software
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Iris.jmp" );
obj = Scatterplot 3D(
Y(
:Sepal length,
:Sepal width,
:Petal length,
:Petal width
)
);
obj << Frame3D(
Set Rotation( -60, -3, 35 ),
Set Oscillation( -54, 0, 38, 100 )
);
Jim