Power table with email Link

Hello all,
I have a question. Is there a way to click on an email on a power table in vision and the default action happens. Like if I’m on a website and click on a email, Outlook pop ups because that my default action on windows.

Capture

Thanks for your help,

In the onMousePress extension function of the power table you could do.

from java.awt import Desktop
from java.net import URI
if colIndex==1:
	desktop = Desktop.getDesktop()
	addr = "mailto:"+value
	desktop.mail(URI(addr))

Perfect. It worked great.