-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
version-specificFor issues that only apply to a specific MATLAB version (e.g. compatibility with new releases).For issues that only apply to a specific MATLAB version (e.g. compatibility with new releases).workaround-availableOriginal problem still exists, but there's an alternative way to achieve the same thing w/o errors.Original problem still exists, but there's an alternative way to achieve the same thing w/o errors.
Description
Expected Behavior
myGUI = DOMdemoGUI;
mlapptools.fontColor(myGUI.TextArea, 'aqua');
Change color from TextArea font to 'aqua'
Actual Behavior
Error using arrayfun
matlab.internal.webwindow output type is not supported. Set 'UniformOutput' to false.
Error in mlapptools/figFromWebwindow (line 434)
ww = arrayfun(@mlapptools.getWebWindow, hUIFigs);
Error in mlapptools/waitTillWebwindowLoaded (line 595)
hFig = mlapptools.figFromWebwindow(hWebwindow);
Error in mlapptools.getWebElements (line 140)
mlapptools.waitTillWebwindowLoaded(win);
Error in mlapptools.fontColor (line 69)
[win, ID_struct] = mlapptools.getWebElements(uiElement);
If changing line 434 from:
ww = arrayfun(@mlapptools.getWebWindow, hUIFigs);
to
ww = arrayfun(@mlapptools.getWebWindow, hUIFigs, 'un',0);
following error occurs:
Error using getappdata
Value must be a handle.
Error in mlapptools/getTimeout (line 488)
to = getappdata(hFig, mlapptools.TAG_TIMEOUT);
Error in mlapptools/waitTillWebwindowLoaded (line 598)
to = mlapptools.getTimeout(hFig);
Error in mlapptools.getWebElements (line 140)
mlapptools.waitTillWebwindowLoaded(win);
Error in mlapptools.fontColor (line 69)
[win, ID_struct] = mlapptools.getWebElements(uiElement);
Steps to Reproduce the Problem
Enter this command in the Matlab Command Line (or any other command from the examples):
myGUI = DOMdemoGUI;
mlapptools.fontColor(myGUI.TextArea, 'aqua');
Specifications
- MATLAB Release: R2017a
- Operating System: Win 7
Metadata
Metadata
Assignees
Labels
version-specificFor issues that only apply to a specific MATLAB version (e.g. compatibility with new releases).For issues that only apply to a specific MATLAB version (e.g. compatibility with new releases).workaround-availableOriginal problem still exists, but there's an alternative way to achieve the same thing w/o errors.Original problem still exists, but there's an alternative way to achieve the same thing w/o errors.