HI Guys,
Just wondering if it is possible to highlight phrase in yellow for example followed by succeeding words. I have tried the Report text tool and there is no high lightening of words.
Below is an example of output:
Please advise
Kamen
Solved! Go to Solution.
@KamenRider one way of doing this
Hi @binuacs
Great, how can I add a space betwen "approve" and "the". And if I have to include the shared drive like "//DriveF/Apple/Quantity", how should I post it?
Please advise.
Kamen
For space, you can use the non-breaking space character:
'<span style="color:black; font-size:12px;"> ' + CharFromInt(160) + 'the Amageddon Deck for week' + '</span>'
what do you mean by include the shared drive? The text can just be included like any other text if that's your question.
Made changes to the code:
'<span style="background-color:yellow; padding:5px; font-size:12px; color:black;">'
+ [Phrase] + CharFromInt(160) +
'</span>' +
'<span style="color:black; font-size:12px;"> '
+ 'the Amageddon Deck for week' +
'</span>'
+'<div style="color:black; font-size:12px; padding:5px;">'
+ '<a href="//DriveF/Apple/Quantity">//DriveF/Apple/Quantity</a></div>'
Thank you.
Kamen