필터 지우기
필터 지우기

I have a GUI, button and text box, When I press the button, I want a link to appear in the text box, So when I click on the link, it takes me to the site

조회 수: 1 (최근 30일)
url = 'http://www.matlabcentral.com'
sitename = 'The MathWorks Web Site'
fprintf('<a href = "%s">%s</a>\n',url,sitename)
set(handles.edit1, 'String', sitename)

채택된 답변

Walter Roberson
Walter Roberson 2021년 12월 20일
You appear to be using GUIDE.
When you use "traditional figures" such as GUIDE uses, then uicontrol style 'edit' and uicontrol style 'text' will not have any HTML respected. HTML is only respected for pushbutton togglebutton checkbox radiobutton listbox popupmenu .
However... if you use any of those, clicking on the link will not do anything unless you configure specially.
Probably the easiest approach is to
url = 'http://www.mathworks.com/matlabcentrl'
sitename = 'The MathWorks Web Site'
set(handles.pushbutton1, 'String', sitename, 'Callback', @(hObject, event) web(url))
That is, make it a button whose action is to open the browser.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by