UI push buttons play audio

2 ビュー (過去 30 日間)
Ana Campos
Ana Campos 2019 年 3 月 28 日
コメント済み: Kevin Phung 2019 年 3 月 28 日
Hello, I need to build a UI with 3 push buttons and each one of them needs to play an audio file. I am not used to working with UI and the code that I would use within a script doesn't work for the UI. Any tips on how to do it please? :) Cheers!

採用された回答

Kevin Phung
Kevin Phung 2019 年 3 月 28 日
if you want to create your ui programmatically, check this out:
if you want to use matlabs appdesigner, which is actually pretty nice but you dont have complete control:
I prefer programming the ui myself.
so for example to create a pushbutton:
%in a script:
f = figure;
push1 = uicontrol('Style','pushbutton',... %type of uicontrol
'String','Enter',...
'callback',@push1callback); %run this function when triggered / pushed
push1 %call this to see other properties you can adjust.
%create a function for the pushbutton:
function push1callback(hObj,event) %always include these 2 parameters, they are there by default
disp('hello')
end
  2 件のコメント
Ana Campos
Ana Campos 2019 年 3 月 28 日
Thanks very much! I'll try it :)
Kevin Phung
Kevin Phung 2019 年 3 月 28 日
happy to help, let me know if you have any more questions

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by