10-06-2010, 01:16 AM
(This post was last modified: 10-06-2010, 01:21 AM by jsknight1969.)
Should work. I noticed the span tags in your Junk description. I wouldn't think that would come over as part of the text, but if it is, then the expression needs to be adapted to allow it. You can try using:
That will display the text for the link so you can verify any additional text needed for your expression.
Also check for a space between (Junk) and $. Your post shows one.
I would really try to use the HTML ID tag instead of the text. You are obviously doing some sort of email application and the link text can change, but the HTML ID should always be the same. View the source of the page and see if it has an ID you can use.
Code:
msgbox Browser().Page().Link(your link).TOProperty("Text")
That will display the text for the link so you can verify any additional text needed for your expression.
Also check for a space between (Junk) and $. Your post shows one.
I would really try to use the HTML ID tag instead of the text. You are obviously doing some sort of email application and the link text can change, but the HTML ID should always be the same. View the source of the page and see if it has an ID you can use.