Stop opening a figure window while using uiwait to pause a playing video in app designer
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
NAVNEET NAYAN
am 26 Aug. 2023
Kommentiert: Voss
am 26 Aug. 2023
In my developed GUI, videos corresponding to alphabets are playing. I wanted to pause and resume those videos using push button. So, I used two different push button for pausing and resuming the playing video and used uiwait and uiresume functions, respectively. Now, when I click the push button of pause while playing the video, a blank figure window opens.
Can anyone suggest me a way to stop opening the figure window?
In case you need details, feel free to comment.
2 Kommentare
Akzeptierte Antwort
Voss
am 26 Aug. 2023
Use
uiwait(app.UIFigure)
and
uiresume(app.UIFigure)
(or whatever the handle to your app's uifigure is, if you changed it from the default app.UIFigure)
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Maintain or Transition figure-Based Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!