Add hyperlink to text in popup box

0
Hi,  I have a popup box(show information activity) in which I want to render the link text to be clickable. How can I add the link to make it clickable. Also, how can I add some alias text instead of link in the messsage? eg: Please visit here for more information Clicking here should redirect to the required link/   Thanks
asked
3 answers
1

Hi Shardul,

You cannot show a link in a show message action.

The easiest way to achieve this functionality is by creating a popup page where you place an ‘Open link’ button with the link configured accordingly. Set Render mode to Link.  You can place text widgets as siblings to the button within a parent container to render the items next to each other.

answered
1

I'm not sure if you can add a link in a show message action.

What I would do is create a popup-page and open it in the microflow, then add a HTMLSnippet with the HTML/JavaScript Snippet Widget to that page and add e.g. this html code in it:

<div>For more information click <a href="https://yourlink.com">here</a></div>

 

answered
0

Hi Shardul,
You can use Link Button for that and specify caption, web address as per your requirement.

answered