How do I change the pointer property on a UI Figure?
Show older comments
I have an appdesigner gui in Matlab 2018b that has a callback for a listbox that plots a set of data on a set of axes adjacent to it. The callback calls a function and I want to change the pointer properties such that upon the clicking of a new data set, it changes the mouse to watch.
I tried
set(gcf, 'Pointer', 'watch');
And that creates a new figure, which is not the functionality I want.
I tried:
set(myUIHandle, 'Pointer', 'watch');
That didn't work either saying UIFigures have no such property
I also tried iptPointerManager to no avail.
Is there no current solution for this in the current version of matlab? Are there no workarounds to this?
Accepted Answer
More Answers (0)
Categories
Find more on Develop Apps Programmatically in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!