EasyGUI not working for version R2014b

1 view (last 30 days)
Hi I was using EasyGUI successfully with R2014a. But it stopped working with R2014b. The problem was that the object defined by uipanel no longer has the properties of 'widthlimits' and 'heightlimits'.
obj.UiGuiArea = uipanel('parent' ...
, obj.UiMainContainer, 'units' ...
, 'pixels', 'backgroundcolor' ...
, obj.BackgroundColor, 'tag' ...
, 'autogui-guiarea' );
set(obj.UiGuiArea, 'widthlimits', [1 1], 'heightlimits', [2 inf]);
The error was "There is no widthlimits property on the UIFlowContainer class." What is the physical meaning of 'widthlimits'? would be the alternative for it? Thanks for your help. Hopefully R2014b does not require a major overhaul for EasyGUI, which was handy.
  1 Comment
M. Welters
M. Welters on 6 Jan 2016
It is such a pity that autogui does not work unter R2014b anymore. Replacing "widthlimits" by "WidthLimits" and "heightlimits" by "HeightLimits" only removes the exceptions. Unfortunately the created GUI controls are invisible. I think this is related to this change:
Dear Mathworks engineers, you should be easily able to provide an autogui revision compatible to R2014b or later, aren't you?

Sign in to comment.

Accepted Answer

Honglei Chen
Honglei Chen on 25 Nov 2014
Maybe you can put a breakpoint there and do
>> set(obj.UiGuiArea)
to see what can be set. It could just be a case sensitive issue, where you may want to use WidthLimits and HeightLimits instead.
  2 Comments
Enhua Zhou
Enhua Zhou on 25 Nov 2014
It is indeed a case sensitive issue. Problem solved according to your suggestion. Thank you! Enhua
Enhua Zhou
Enhua Zhou on 26 Nov 2014
Honglei, I had trying EasyGUI on 2014b for a few more rounds. I found that it fails quite extensively. Since it will take me a lot of time to debug it, I had decided to switch back to 2014a. Nonetheless, EasyGUI is perhaps due for an upgrade since its release in 2009.

Sign in to comment.

More Answers (2)

M. Welters
M. Welters on 11 Dec 2015
It is such a pity that autogui does not work unter R2014b anymore. Replacing "widthlimits" by "WidthLimits" and "heightlimits" by "HeightLimits" only removes the exceptions. Unfortunately the created GUI controls are invisible. I think this is related to this change:
Dear Mathworks engineers, you should be easily able to provide an autogui revision compatible to R2014b or later, aren't you?

M. Welters
M. Welters on 6 Apr 2018
It seems that Vadim Frolov fixed EasyGUI to work with ML R2014b+

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!