mlapptools
mlapptools copied to clipboard
MATLAB class containing methods for programmatic uifigure modification
## Summary I am having troubles when using the following function : `[win, widgetID] = mlapptools.getWebElements(app.TabGroup);` The issue is quite random. I can have issue 1 or issue 2, you...
## Summary This is a type of element that was added in R2018b, having the following HTML structure: ```html ``` For the above example, `getWebElements` currently returns `id = uniqName_29_0`,...
## Problem Description Testing the `unlockUIFig` from the provided example gives me following MATLAB exception: ``` Undefined function or variable 'wasImported'. Error in mlapptools/unlockUIFig/checkCert (line 412) if wasImported Error in...
## Expected Behavior Hello together, my ultimate goal is to change the background color of a single column in a uitable. Therefore I'd like to modify the uitable's style. Is...
## 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....
Submitted pull request #5 allows formatting controls whose parent is not the uifigure, however, the following fails: f = uifigure('Position', [680 558 560 420]); t = uitree(f,'Position',[20 20 520 380]);...
## Summary Was trying to apply CSS to my GUI using this excellent tool and encountered a few issues in newer releases, at least R2022b and R2023a. Here below are...