Adding Hyperlink into the Servoy form

Hi all,
Does Servoy support Hyperlink?
I have the following link that I would like to add into one of our Servoy Forms:
http://wwww.stanford.edu

Please let me know.

Thanks in advance,

Abrahim

Yes.

In method editor, click on “Application” then at bottom of screen scroll down to showURL. Right-click to past sample code into a new method. Assign method to desired form element’s onFocusGained property. If you want the url to be based on the contents of a field you can do something like:

application.showURL('http://'+fieldname);

or for email

application.showURL('mailto:'+fieldname);

Thanks Westy,

That did it!

Abrahim