innerText should gebnerally be innerHTML without the HTML tags. Alternatively you could use a Calculation action, and a Javascript function such as the following :
function removeHTMLTags(s)
{
var i, l, prevch, result = "";
var inToken = 0;
var inQuote = false;
for (i=0, l = s.length; i < l; i++)
{
var ch = s.substring(i,i+1);
if (ch == '<' && !inQuote)
{
inToken++;
}
else if (ch == '>' && !inQuote)
{
inToken--;
}
else
{
if (ch == '\"' && prevCh != '\\')
{
inQuote = !inQuote;
}
if (inToken <= 0)
result = result + ch;
}
prevch = ch;
}
return result;
}
Thanks,
Ben
SmartsAutoWeb Support Officer
Quality Componentware Ltd.