How can i make phone call using touchkit?

How can i make phone call when i press link button with phone number text?

Hi,

You can use tel url scheme with Link component.

Here’s an example:

Link call = new Link("Call 123456789", new ExternalResource("tel: 123456789"));

Thank you @Jarno Rantala. It works nice. It was really helpful.