Email link in GUI dialog box

7 views (last 30 days)
Celine Cluzel
Celine Cluzel on 1 Jul 2011
Commented: Adam Danz on 26 Jan 2020
Hi,
I've developed an application and on the front page, the ABOUT button opens a small window containing with version number and contact details to get help, i.e. name, phone number and email address. Is it possible to embed the email address as a 'mailto' link as opposed to standard text?
Thanks Celine

Accepted Answer

Jan
Jan on 1 Jul 2011
You can create a button, which calls WEB in the callback:
web('mailto:your.mail@address.org');
Yair has described how a borderless button can be drawn: Undocumented:Borderless button. If you use this, care for at least an underlined style, otherwise the user does not get the impression, that this is a link.
  2 Comments
Celine Cluzel
Celine Cluzel on 1 Jul 2011
Brilliant, thanks for your help, it works perfectly.
Adam Danz
Adam Danz on 26 Jan 2020
8.5 years later....
Here's a demo.
In that demo, replace this line
th.ButtonDownFcn = @(~,~)web('mathworks.com');
with this
th.ButtonDownFcn = @(~,~)web('mailto:your.mail@address.org');

Sign in to comment.

More Answers (0)

Categories

Find more on Downloads in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!