Avatar

Level 3

Hi Vasu

I am running Version 8.2 and it works fine.

The other way is to edit the xml directly. You should have the xml tab in the designer view

Click on the text box you wish to add the hyperliunk to before you click on the xml tab

Then when you enter the xml view the text box you have highlighted will be shown  (in code)

you need to find the section similar to below

  <value>
               <exData contentType="text/html">
                  <body xmlns="http://www.w3.org/1999/xhtml" xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xfa:APIVersion="2.7.0.0"><p style="text-decoration:none;letter-spacing:0in"><span style="font-family:'Myriad Pro';font-size:10pt">Your Text</span></p></body>
               </exData>
            </value>

Your text will be contained within the body tags

Find the specific portion of text and add in  <a href="mailto:name@email.com">  before your text and </a> after your text.

e.g. <a href="mailto:name@email.com">  Your Hyperlink Text </a>

This should Work

Let me know if it doesn't