How do we get classic menus back?

14 ビュー (過去 30 日間)
Cecil Binks
Cecil Binks 2013 年 12 月 27 日
コメント済み: jan schnupp 2021 年 9 月 10 日
Sure I can minimize the tool strip, but it doesn't spell out a bunch of functionalilty easy to find in the old menu bar.
Ribbons may be fine for selling Windows into elementary school, but Matlab is for professionals, not for kids learning to tweet and update their timeline.
And how is this "better"? Yes that's a rhetorical question... What a UI disaster.
So I have to write my request on the back of a $20 bill and mail it to MatLab Plaza? ;^))
  1 件のコメント
jan schnupp
jan schnupp 2021 年 9 月 10 日
I feel your pain. One more reason to switch to python as soon as possible.

サインインしてコメントする。

回答 (2 件)

Serge
Serge 2018 年 7 月 30 日
編集済み: Serge 2018 年 7 月 30 日
Ribbons are a waste of space, especially on a laptop screen. By using the quick access toolbar and lots of hacking you can replace:
.
with this:
.
Note: there is still lots of wasted space, but its much better. Hacking is required because there is no way to add figure buttons to quick access. You have to mimic figure buttons using favorite commands with custom icons and code such as:
if strcmpi(get(zoom,'Direction'),'out')
set(zoom,'Direction','in','enable','on')
disp('zoom in: on')
elseif strcmpi(get(zoom,'Direction'),'in')
if strcmpi(get(zoom,'Enable'),'off')
set(zoom,'enable','on')
disp('zoom in: on')
else
set(zoom,'enable','off')
disp('zoom in: off')
end
end
Transferring these customization to another computer is a nightmare... Lets hope R2035 will be better.

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 12 月 27 日
The only way is to downgrade your Matlab to R2012a

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by