Error while evaluating Menu Callback.

52 views (last 30 days)
Jordi
Jordi on 1 Dec 2022
Answered: Jordi on 29 Dec 2022
Hi, I can't properly save a picture. When I try to save a figure (File > Save As or Save) the following error appears: "Error while evaluating Menu Callback.". Which is weird because I could do it with the same code a week ago. I've managed to save some pictures trough the shortcut that appears on the top right corner of a figure, which allows to "Save As" or "copy image". But this doesn't work with a subplot, as it saves each subplot separately.
I tried "restoredefaultpath" and reinstalled matlab but it didn't fix it. How can I solve it?

Accepted Answer

Jordi
Jordi on 29 Dec 2022

More Answers (1)

Suchitra
Suchitra on 6 Dec 2022
Hello Jordi,
I can understand that you are facing an issue when trying to use File > Save, File > Save As to save a figure.
In order to resolve this issue, please refer to the following workaround:
Use the following MATLAB Command instead of using the File > Save dialog:
>> saveas('figurename.fig')
With regards to the cause of the issue, it is possible that one of the built-in toolbox functions may have become shadowed or corrupted. In order to best proceed, you can execute the following command
>> which -all filemenufcn.m
This command should return a path similar to:
C:\ProgramFiles\MATLAB\R2022b\toolbox\matlab\uitools\filemenufcn.m
If it does, try to open this file in the MATLAB Editor to see if it has become corrupted. It may also be worth renaming this file and then copying the same file from your other MATLAB installation on your notebook, in which you are not receiving this same error into this directory, rather than uninstalling and completely reinstalling MATLAB.
See also:
Hope this helps!
  1 Comment
Jordi
Jordi on 6 Dec 2022
Hello Suchitra,
Thanks for the help.
When I open filemenufcn.m in the editor it seems to be okay. I tried to use saveas(gcf, 'Filename.fig') and it works fine, but I don't know how to convert it to .png or .jpg. On the other hand, when using >> saveas(gcf,'Filename.png') I get the following error:
Failed to load bundle #770: C:\Program Files\MATLAB\R2022b\bin\win64\sl_utility.dll
I can't recover the filemenufcn.m from the first installation either. Are there any other options?

Sign in to comment.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!