GUI Help

1 次查看(过去 30 天)
Sharmen
Sharmen 2011-3-7
hi, i created 5 pushbuttons in my GUI figure file, and 1 static text, and i have sound file in wav format for each alphabet, let say button A until button E. If i click on Button A, it should display on static text box as "A" and play the WAV file for Alphabet A. How do put command in GUI create function ? i really need help in these section. It will very helpful it someone could help me out in this..
Thanks in advance

采纳的回答

Matt Fig
Matt Fig 2011-3-7
Set the string property of the texbox in the callback for the corresponding pushbutton. For example, in the callback for the pushbutton with label A, do:
H = guidata(gcbo);
set(H.textbox1,'string','A') % Use the correct textbox handle.
  2 个评论
Sharmen
Sharmen 2011-3-8
thanks!! i worked!! but how do i play a wav file at the same time.. i know have to use "wavread" command?
thanks!!
Matt Fig
Matt Fig 2011-3-8
Your welcome. To play a wav file, you need to load it with the command:
[Y,K] = wavread(filename);
sound(Y,K)
If you have other types of files to play, you might want to consider searching the FEX for some players:
http://www.mathworks.com/matlabcentral/fileexchange/?term=mp3

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by