Azzera filtri
Azzera filtri

GUI Help

1 visualizzazione (ultimi 30 giorni)
Sharmen
Sharmen il 7 Mar 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

Risposta accettata

Matt Fig
Matt Fig il 7 Mar 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 Commenti
Sharmen
Sharmen il 8 Mar 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 il 8 Mar 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

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by