Filter löschen
Filter löschen

GUI Help

1 Ansicht (letzte 30 Tage)
Sharmen
Sharmen am 7 Mär. 2011
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

Akzeptierte Antwort

Matt Fig
Matt Fig am 7 Mär. 2011
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 Kommentare
Sharmen
Sharmen am 8 Mär. 2011
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 am 8 Mär. 2011
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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by