フィルターのクリア

how to block push button after pressed?

2 ビュー (過去 30 日間)
Firzi Mukhri
Firzi Mukhri 2013 年 5 月 25 日
I have 4 push button on my GUI. One 'play' button, one 'poor' button, one 'okay' button, one 'good' button.
the program start by clicking 'play' button that will play a sound.
the user will then have to grade the song using the other 3 button, either 'poor', 'okay' or 'good'.
after the user grade the song, the 3 button is programmed to call the 'play' button function, and next song will be played.
the problem is, if the user pressed the play button 'again' without grading the song. next song will be played leaving the last song to skip and not graded. Does anyone have any idea how to prevent this? Thank you.

採用された回答

Image Analyst
Image Analyst 2013 年 5 月 25 日
Just have the Play button call a function you write called PlayNextSoundFile(). Then for the other 3 button callbacks, you do
function btnGood_Callback(hObject, eventdata, handles)
% Log score for this song.
songNumber = handles.songNumber; % Increment this in PlayNextSoundFile
handles.songScore(songNumber) = 2; % or whatever.
% Play the next sound file. Also increments handles.songNumber.
PlayNextSoundFile(handles);
guidata(handles);
Same thing for the okay and poor callbacks. Set the score to whatever number you want to use to rate them good, poor, or okay. Or alternatively you could put up a slider or a bunch of radio buttons to get the user's rating of that song.
  3 件のコメント
Image Analyst
Image Analyst 2013 年 5 月 25 日
If the user clicks the play button, you can call PlayCurrentSong(handles) to replay the current song only, and so then it won't increment to the next song and play the next song.
Firzi Mukhri
Firzi Mukhri 2013 年 5 月 25 日
Thanks! I understand now.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio I/O and Waveform Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by