PDA

View Full Version : Email in dynamic text


KBTNT
05-06-2006, 09:15 PM
hey all. im working on something and i want to have a clickable email in my dynamic text box.

the email is in a paragraph and i just want the email name to be a link to email so when you click on the email name, it opens up outlook express and opens a new email.

anyone know how to do this?

norb
05-08-2006, 02:02 AM
set the text box to render as html and
then set the contents of the box as html text with html <a> tags surrounding the part you want to have as the link.


textBox.html=true;
textBox.htmlText="Here is the text<a href='mailto:email@example.com'>Email me</a>";