Question: Is it possible to suppress the plotting (IJulia, Windows 10) of the final plot (above the pink box with my black tipped masking of directories) + suppressing the pink Info message, and only get the animation?
begin
@gif for i=1:5
fg_anim = scatter(x_[:,i],y_[:,i],xlim=(X11,X12),ylim=(X11,X12),ms=15,mc=Mcol,label="",title="time: $(round(tsamp[i],digits=1)) ps");
plot(fg_short,fg_anim,layout=(1,2),size=(1000,400))
end
end;
Yes. If I bracket the code in begin-end, only the final time plot + the pink info box shows up; the animation disappears. Which is kind of the opposite of what I want.
In other words: the final time plot is still shown before the animation Out cell. But it looks nicer without the pink info box, so I’m almost at what I want to have.