Help and Support - GUIDE

I have two pop-up menus (popupmenu1 and popupmenu2) each of them contains three strings, namely; “red”, “blue” and “green”; one pushbutton (pushbutton1); and one edittext (edittext1) placed on a figure (figure1).
If I press the pushbutton1, I need It to display the name of the new (resultant) colour formed in the edittext1, as a result of mixing (combining) the selected colour from popupmenu1 with the selected colour from popupmenu2.
The desired outputs are:
red + green = yellow (that is, selection of “red” from popupmenu1 and selection of “green” from popupmenu2 will display “yellow” in the edittext1, when the pushbutton1 is pressed).
Similarly:
red + blue = magenta (that is, selection of “red” from popupmenu1 and selection of “blue” from popupmenu2 will display “magenta” in the edittext1, when the pushbutton1 is pressed).
blue + green = cyan (that is, selection of “blue” from popupmenu1 and selection of “green” from popupmenu2 will display “cyan” in the edittext1, when the pushbutton1 is pressed).
The Callback needs to be implemented using nested If-elseif-else-end or the Switch statements to run.
Many thanks.

3 Comments

Show us what you've written to try to implement the callback and explain why it doesn't do what you want and we may be able to offer some help.
I have placed all of the UI controls mentioned in the question on a figure (figure1).
I have written a callback for pushbutton1.
The specific question: How do I get the name of the new (resultant) colour displayed in the edittext1, after I had mixed (combined) two colours by selecting one colour from popupmenu1 and another from popupmenu2, and lastly pressed pushbutton1?
For instance, red + green = yellow (that is, on selecting “red” from popupmenu1 and "green” from popupmenu2, "yellow" will be displayed in edittext1, when pushbutton1 is pressed).
See the below callback for pushbutton1:
function pushbutton1_Callback(hobject,eventdata,handles)
if strcmp( selected_string1, 'red') && strcmp( selected_string2, ’blue')
set(handles.edittext1,'String','Magenta' )
elseif strcmp( selected_string1, 'green') && strcmp( selected_string2, 'blue')
set(handles.edittext1,'String','Cyan' )
elseif strcmp( selected_string1, 'red') && strcmp( selected_string2, 'green')
set(handles.edittext1,'String’,'Yellow' )
else
set(handles.edittext1,'String', 'Yiou need to select one colour from each pop-up menu' )
end
Error message displayed by Matlab: Error in Callbacck.
I look forward to hearing from you.
Many thanks.
Can you show us the full and exact text of the error message you receive? Show us all the text displayed in red and all the text displayed in orange when you try pushing the button.

Sign in to comment.

Answers (0)

Categories

Find more on Historical Contests in Help Center and File Exchange

Tags

Asked:

on 3 Jan 2021

Commented:

on 4 Jan 2021

Community Treasure Hunt

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

Start Hunting!