MATLAB: Editing PowerPoint While It is Open

MATLABpowerpoint

Hi. I'm trying to write code which will add or edit images in a powerpoint. The only problem I have now is that I can only edit it while the powerpoint window is closed. If it is open, the following error appears:
Error using mlreportgen.ppt.Presentation/find
Cannot open file. C:/Users/me/folder/my_powerpoint.pptx
Error in add_to_ppt (line 5)
previous_content=find(slides,name);
Does anyone know a way of editing the powerpoint while it is open? Thanks in advance!
Here is the function I'm using:
function add_to_ppt(name,content)
import mlreportgen.ppt.*;
slides = Presentation('C:\Users\me\folder\my_powerpoint.pptx','C:\Users\me\folder\my_powerpoint.pptx');
previous_content=find(slides,name);
image=Picture(content);
image.Name=name;
if isempty(previous_content)
image.X='0in';
image.Y='0in';
image.Height='7.5in';
image.Width='13.33in';
new_slide=add(slides,'Blank');
add(new_slide,image);
else
image.X=previous_content.X;
image.Y=previous_content.Y;
image.Height=previous_content.Height;
image.Width=previous_content.Width;
replace(previous_content,image);
end
close(slides);
end

Best Answer

When a file is open in powerpoint, powerpoint locks it so no other program can edit it. This is why you get an error when trying to open the file.
Instead of using mlreport to edit the file, you could talk directly to powerpoint and send it instructions to modify the file. The downside of this is you can't use the report generator anymore, you'll have to do everything yourself. You would have to use actxGetRunningServer to find the open powerpoint instance and then use the powerpoint object model to do what you want. Not impossible but a lot of work if you're not familiar with it.
Frankly, the simplest thing to do is to ensure that you've closed the file before editing with matlab. This would also ensure that if there were some unsaved changed in the powerpoint file, they are actually saved before the edition with matlab.