Yes. As the number of pictures grows, it takes much longer to add another picture. Loading the HTML is not a problem, but writing is. JMP 13 will use part of the date in the file name to prevent the slow down.
Something like this will work better, and keep the gfx+html organized at the same time. The last few lines are suggesting a way to keep the current file in a consistent location for your users:
// example script to make a daily report folder
dt = Open( "$sample_data/big class.jmp" );
rpt = dt << Bivariate( Y( :weight ), X( :height ), Fit Line( {Line Color( {213, 72, 87} )} ) );
// directory names can be all numbers, but you might want a letter,
// R for report, perhaps, as the first letter. Or a better title.
// make sure the date format doesn't have / or \ characters!
// the YYYYMMDD format is nice because it sorts correctly
daily = "R" || Format( Today(), "yyyymmdd" );
pathname = "$desktop/" || daily;
If( !Directory Exists( pathname ),
Create Directory( pathname )
);
rpt << savehtml( pathname || "/biv.html" );
rpt << closewindow;
Close( dt, "nosave" );
Create Directory( "$desktop/FinalLocation" ); // probably already there from yesterday
Copy Directory( pathname, "$desktop/FinalLocation" ); // using daily
Delete Directory( "$desktop/FinalLocation/current" ); // clean out yesterdays report
// make daily "R20160527" be a fixed name, "current"
Rename Directory( "$desktop/FinalLocation/" || daily, "current" );
Craige